:root {
    --primary-color: #dd5138; /* Your brand orange */
    --secondary-color: #04923f; /* Your brand green */
    --accent-color: #ffffff;
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --card-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 20%;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
}


.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.social-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.social-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.instagram-icon {
    color: white;
}

.tiktok-icon {
    color: white;
}

.linkedin-icon {
    color: white;
}

.social-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.social-embed {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #666;
    padding: 20px;
    text-align: center;
    overflow-y: auto;
}

.social-footer {
    padding: 15px;
    background: white;
}

.social-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.social-platform-tagline {
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 500;
}