/* Global Styles */
:root {
  --primary-color: #ef476f;
  --secondary-color: #333333;
  --light-gray: #f8f9fa;
  --dark-gray: #6c757d;
  --white: #ffffff;
  --border-radius: 10px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* General Styling */
main {
    background-color: var(--light-gray);
}

section {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

/* Introduction Section */
#introduction {
    margin-top: 2%;
    position: relative;
    border-left: 5px solid var(--primary-color);
}

#introduction h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

#introduction p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

#values h2 {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

#values h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

#values ul {
    list-style: none;
    padding: 0;
}

#values li {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

#values li:hover {
    background-color: var(--white);
    transform: scale(1.02);
    box-shadow: var(--box-shadow);
}

#values strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

#team {
    text-align: center;
}

#team h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
}

#team .row {
    margin-top: 20px;
}

#team .col-md-4 {
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

#team h3 {
    color: var(--secondary-color);
    margin-top: 15px;
    font-weight: 600;
}

#team p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

#team img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

#team img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#cta {
    background: linear-gradient(135deg, var(--primary-color), #ff758f);
    color: var(--white);
    text-align: center;
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 50px;
}

#cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

#cta .btn-primary:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 20px;
    }
    
    #introduction h2, #cta h2 {
        font-size: 1.8rem;
    }
    
    #team img {
        width: 150px;
        height: 150px;
    }
}
