/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1E1E1E;
    background-color: #FFFFFF;
}

/* Header Styles */
#mainHeader {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#siteLogo {
    max-width: 100px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

#siteLogo:hover {
    transform: scale(1.05);
}

#navigationMenu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

#navigationMenu li a {
    text-decoration: none;
    color: #1E1E1E;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

#navigationMenu li a:hover {
    color: #FFFFFF;
    background-color: #FF3CAC;
    transform: scale(1.05);
}

#navigationMenu li a::after {
    display: none;
}

/* Hamburger Menu */
#hamburgerMenu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

#hamburgerLine1,
#hamburgerLine2,
#hamburgerLine3 {
    width: 25px;
    height: 3px;
    background-color: #1E1E1E;
    margin: 3px 0;
    transition: 0.3s;
}

#hamburgerMenu.active #hamburgerLine1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

#hamburgerMenu.active #hamburgerLine2 {
    opacity: 0;
}

#hamburgerMenu.active #hamburgerLine3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
#mainContent {
    margin-top: 80px;
}

/* Hero Section */
#heroSection {
    background: linear-gradient(135deg, #E8F9FD 0%, #FFF4E0 100%);
    padding: 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

#heroContainer {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

#heroTitle {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-align: center;
    line-height: 1.2;
}

#heroSubtitle {
    font-size: 1.3rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.2s both;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

#heroButton {
    background: linear-gradient(135deg, #FF3CAC, #845EC2);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 60, 172, 0.3);
    text-decoration: none;
    display: inline-block;
}

#heroButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 60, 172, 0.4);
}

#heroImageContainer {
    text-align: center;
    animation: fadeInRight 1s ease 0.6s both;
}

#heroImage {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Features Section */
#featuresSection {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

#featuresContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#featuresTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease;
}

#featuresGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#featureCard1,
#featureCard2,
#featureCard3 {
    background: linear-gradient(135deg, #E8F9FD, #FFF4E0);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#featureCard1:hover,
#featureCard2:hover,
#featureCard3:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#featureImage1,
#featureImage2,
#featureImage3 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

#featureTitle1,
#featureTitle2,
#featureTitle3 {
    font-size: 1.5rem;
    color: #1E1E1E;
    margin-bottom: 1rem;
}

#featureDesc1,
#featureDesc2,
#featureDesc3 {
    color: #1E1E1E;
    opacity: 0.8;
    line-height: 1.6;
}

/* Why Choose Section */
#whyChooseSection {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFF4E0 0%, #E8F9FD 100%);
}

#whyChooseContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#whyChooseTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
}

#whyChooseContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

#whyChooseList {
    list-style: none;
}

#whyChooseItem1,
#whyChooseItem2,
#whyChooseItem3,
#whyChooseItem4,
#whyChooseItem5 {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #1E1E1E;
    position: relative;
    padding-left: 2rem;
}

#whyChooseItem1::before,
#whyChooseItem2::before,
#whyChooseItem3::before,
#whyChooseItem4::before,
#whyChooseItem5::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF3CAC;
    font-weight: bold;
    font-size: 1.2rem;
}

#whyChooseImage {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Footer */
#mainFooter {
    background-color: #1E1E1E;
    color: #FFFFFF;
    padding: 3rem 2rem 1rem;
}

#footerContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#footerContent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

#footerTitle {
    color: #FF3CAC;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#footerDescription {
    opacity: 0.8;
    line-height: 1.6;
}

#contactTitle,
#legalTitle {
    color: #2BD9FE;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#contactPhone,
#contactAddress {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

#legalLinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

#legalLinks li {
    margin-bottom: 0.8rem;
}

#legalLinks li a {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

#legalLinks li a:hover {
    opacity: 1;
    color: #FF3CAC;
    transform: translateX(5px);
}

#legalLinks li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #FF3CAC;
    transition: width 0.3s ease;
}

#legalLinks li a:hover::after {
    width: 100%;
}

#footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

#copyright {
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Forms */
#contactForm {
    background: linear-gradient(135deg, #E8F9FD, #FFF4E0);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#contactName,
#contactEmail,
#contactSubject,
#contactMessage {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

#contactName:focus,
#contactEmail:focus,
#contactSubject:focus,
#contactMessage:focus {
    outline: none;
    border-color: #FF3CAC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 60, 172, 0.2);
}

#contactSubmit {
    background: linear-gradient(135deg, #FF3CAC, #845EC2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

#contactSubmit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 60, 172, 0.3);
}

/* Policy Pages */
#policyContent {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    line-height: 1.8;
}

#policyTitle {
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 2rem;
    text-align: center;
}

#policyContent h2 {
    color: #845EC2;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

#policyContent h3 {
    color: #FF3CAC;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
}

#policyContent p {
    margin-bottom: 1rem;
    color: #1E1E1E;
}

#policyContent ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

#policyContent li {
    margin-bottom: 0.5rem;
}

/* About Page Styles */
#aboutHeroSection {
    background: linear-gradient(135deg, #E8F9FD 0%, #FFF4E0 100%);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

#aboutHeroTitle {
    font-size: 3rem;
    color: #1E1E1E;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

#aboutHeroSubtitle {
    font-size: 1.2rem;
    color: #1E1E1E;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

#missionSection {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

#missionContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#missionContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

#missionTitle {
    font-size: 2.5rem;
    color: #845EC2;
    margin-bottom: 2rem;
}

#missionDescription1,
#missionDescription2 {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1E1E1E;
}

#missionImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#valuesSection {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFF4E0 0%, #E8F9FD 100%);
}

#valuesContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#valuesTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
}

#valuesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#valueCard1,
#valueCard2,
#valueCard3,
#valueCard4 {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#valueCard1:hover,
#valueCard2:hover,
#valueCard3:hover,
#valueCard4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#valueIcon1,
#valueIcon2,
#valueIcon3,
#valueIcon4 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

#valueTitle1,
#valueTitle2,
#valueTitle3,
#valueTitle4 {
    font-size: 1.5rem;
    color: #FF3CAC;
    margin-bottom: 1rem;
}

#valueDesc1,
#valueDesc2,
#valueDesc3,
#valueDesc4 {
    color: #1E1E1E;
    line-height: 1.6;
    opacity: 0.8;
}

#teamSection {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

#teamContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#teamTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
}

#teamGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#teamCard1,
#teamCard2,
#teamCard3 {
    background: linear-gradient(135deg, #E8F9FD, #FFF4E0);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#teamCard1:hover,
#teamCard2:hover,
#teamCard3:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#teamImage1,
#teamImage2,
#teamImage3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #FF3CAC;
}

#teamName1,
#teamName2,
#teamName3 {
    font-size: 1.5rem;
    color: #1E1E1E;
    margin-bottom: 0.5rem;
}

#teamRole1,
#teamRole2,
#teamRole3 {
    font-size: 1rem;
    color: #845EC2;
    font-weight: bold;
    margin-bottom: 1rem;
}

#teamBio1,
#teamBio2,
#teamBio3 {
    color: #1E1E1E;
    line-height: 1.6;
    opacity: 0.8;
}

#approachSection {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFF4E0 0%, #E8F9FD 100%);
}

#approachContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#approachTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
}

#approachContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

#approachItem1,
#approachItem2,
#approachItem3,
#approachItem4 {
    margin-bottom: 2rem;
}

#approachItemTitle1,
#approachItemTitle2,
#approachItemTitle3,
#approachItemTitle4 {
    font-size: 1.3rem;
    color: #FF3CAC;
    margin-bottom: 0.5rem;
}

#approachItemDesc1,
#approachItemDesc2,
#approachItemDesc3,
#approachItemDesc4 {
    color: #1E1E1E;
    line-height: 1.6;
    opacity: 0.8;
}

#approachImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles */
#contactHeroSection {
    background: linear-gradient(135deg, #E8F9FD 0%, #FFF4E0 100%);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

#contactHeroTitle {
    font-size: 3rem;
    color: #1E1E1E;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

#contactHeroSubtitle {
    font-size: 1.2rem;
    color: #1E1E1E;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

#contactFormSection {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

#contactFormContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#contactFormContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

#contactFormTitle {
    font-size: 2rem;
    color: #845EC2;
    margin-bottom: 1rem;
}

#contactFormDesc {
    font-size: 1.1rem;
    color: #1E1E1E;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

#formGroup1,
#formGroup2,
#formGroup3,
#formGroup4 {
    margin-bottom: 1.5rem;
}

#nameLabel,
#emailLabel,
#subjectLabel,
#messageLabel {
    display: block;
    font-weight: bold;
    color: #1E1E1E;
    margin-bottom: 0.5rem;
}

#contactInfoTitle {
    font-size: 2rem;
    color: #845EC2;
    margin-bottom: 2rem;
}

#contactInfoCard {
    background: linear-gradient(135deg, #E8F9FD, #FFF4E0);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

#contactInfoItem1,
#contactInfoItem2,
#contactInfoItem3,
#contactInfoItem4 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

#contactInfoItem4 {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#contactIcon1,
#contactIcon2,
#contactIcon3,
#contactIcon4 {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

#phoneTitle,
#emailTitle,
#addressTitle,
#hoursTitle {
    font-size: 1.2rem;
    color: #FF3CAC;
    margin-bottom: 0.5rem;
}

#phoneNumber,
#emailAddress,
#fullAddress,
#officeHours {
    color: #1E1E1E;
    line-height: 1.5;
    margin: 0;
}

#mapPlaceholder {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#faqSection {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFF4E0 0%, #E8F9FD 100%);
}

#faqContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#faqTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
}

#faqGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

#faqItem1,
#faqItem2,
#faqItem3,
#faqItem4,
#faqItem5,
#faqItem6 {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#faqItem1:hover,
#faqItem2:hover,
#faqItem3:hover,
#faqItem4:hover,
#faqItem5:hover,
#faqItem6:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#faqQuestion1,
#faqQuestion2,
#faqQuestion3,
#faqQuestion4,
#faqQuestion5,
#faqQuestion6 {
    font-size: 1.3rem;
    color: #845EC2;
    margin-bottom: 1rem;
}

#faqAnswer1,
#faqAnswer2,
#faqAnswer3,
#faqAnswer4,
#faqAnswer5,
#faqAnswer6 {
    color: #1E1E1E;
    line-height: 1.6;
    opacity: 0.8;
}

/* Additional Animation Classes */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #FF3CAC, #845EC2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 60, 172, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #2BD9FE, #845EC2);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 217, 254, 0.3);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ccc;
    border-top: 2px solid #FF3CAC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
    word-wrap: break-word;
}

.notification.success {
    background: linear-gradient(135deg, #2BD9FE, #845EC2);
}

.notification.error {
    background: linear-gradient(135deg, #FF3CAC, #845EC2);
}

.notification.show {
    transform: translateX(0);
}

/* Testimonials Section */
#testimonialsSection {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #E8F9FD 0%, #FFF4E0 100%);
}

#testimonialsContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#testimonialsTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
}

#testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#testimonialCard1,
#testimonialCard2,
#testimonialCard3 {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#testimonialCard1:hover,
#testimonialCard2:hover,
#testimonialCard3:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#testimonialText1,
#testimonialText2,
#testimonialText3 {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    font-style: italic;
}

#testimonialAuthor1,
#testimonialAuthor2,
#testimonialAuthor3 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#testimonialImage1,
#testimonialImage2,
#testimonialImage3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

#testimonialName1,
#testimonialName2,
#testimonialName3 {
    color: #845EC2;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

#testimonialRole1,
#testimonialRole2,
#testimonialRole3 {
    color: #1E1E1E;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* News Section */
#newsSection {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

#newsContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#newsTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin-bottom: 3rem;
}

#newsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#newsCard1,
#newsCard2,
#newsCard3 {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#newsCard1:hover,
#newsCard2:hover,
#newsCard3:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#newsImageContainer1,
#newsImageContainer2,
#newsImageContainer3 {
    position: relative;
    overflow: hidden;
}

#newsImage1,
#newsImage2,
#newsImage3 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#newsCard1:hover #newsImage1,
#newsCard2:hover #newsImage2,
#newsCard3:hover #newsImage3 {
    transform: scale(1.1);
}

#newsDate1,
#newsDate2,
#newsDate3 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1E1E1E;
}

#newsContent1,
#newsContent2,
#newsContent3 {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#newsTitle1,
#newsTitle2,
#newsTitle3 {
    font-size: 1.3rem;
    color: #1E1E1E;
    margin-bottom: 1rem;
}

#newsExcerpt1,
#newsExcerpt2,
#newsExcerpt3 {
    color: #1E1E1E;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

#newsLink1,
#newsLink2,
#newsLink3 {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #FF3CAC, #845EC2);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

#newsLink1:hover,
#newsLink2:hover,
#newsLink3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 60, 172, 0.3);
}

/* CTA Section */
#ctaSection {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #FF3CAC, #845EC2);
    text-align: center;
    color: #FFFFFF;
}

#ctaContainer {
    max-width: 800px;
    margin: 0 auto;
}

#ctaTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

#ctaDescription {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

#ctaButton {
    background: #FFFFFF;
    color: #845EC2;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#ctaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #F8F8F8;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #E8F9FD, #FFF4E0);
    padding: 1.5rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 1rem;
    color: #1E1E1E;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

#acceptCookies {
    background: linear-gradient(135deg, #FF3CAC, #845EC2);
    color: white;
}

#declineCookies {
    background: linear-gradient(135deg, #2BD9FE, #845EC2);
    color: white;
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    #hamburgerMenu {
        display: flex;
    }
    
    #navigationMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    #navigationMenu.active {
        left: 0;
    }
    
    #navigationMenu li {
        margin: 1rem 0;
    }
    
    #navigationMenu li a {
        font-size: 1.2rem;
    }
    
    #heroContainer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    #heroTitle {
        font-size: 2rem;
    }
    
    #heroSubtitle {
        font-size: 1rem;
    }
    
    #whyChooseContent {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #footerContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    #featuresGrid {
        grid-template-columns: 1fr;
    }
    
    #navigationBar {
        padding: 1rem;
    }
    
    #siteLogo {
        font-size: 1.5rem;
    }

    /* About Page Mobile */
    #aboutHeroTitle {
        font-size: 2rem;
    }

    #missionContent {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #valuesGrid {
        grid-template-columns: 1fr;
    }

    #teamGrid {
        grid-template-columns: 1fr;
    }

    #approachContent {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Page Mobile */
    #contactHeroTitle {
        font-size: 2rem;
    }

    #contactFormContent {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #faqGrid {
        grid-template-columns: 1fr;
    }

    /* Mobile specific adjustments */
    #policyContent {
        padding: 2rem 1rem;
    }

    #policyTitle {
        font-size: 2rem;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }

    .notification.show {
        transform: translateY(0);
    }

    #legalLinks li a:hover {
        transform: translateX(0);
    }

    #legalLinks li {
        margin-bottom: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #heroTitle,
    #aboutHeroTitle,
    #contactHeroTitle {
        font-size: 1.8rem;
    }

    #featuresTitle,
    #whyChooseTitle,
    #valuesTitle,
    #teamTitle,
    #approachTitle,
    #faqTitle {
        font-size: 2rem;
    }

    #heroButton,
    #contactSubmit {
        width: 100%;
        padding: 1.2rem;
    }

    #valueCard1,
    #valueCard2,
    #valueCard3,
    #valueCard4,
    #teamCard1,
    #teamCard2,
    #teamCard3,
    #featureCard1,
    #featureCard2,
    #featureCard3 {
        padding: 1.5rem;
    }

    #heroSection,
    #aboutHeroSection,
    #contactHeroSection {
        padding: 2rem 1rem 1rem;
    }

    #siteLogo {
        font-size: 1.3rem;
    }

    #navigationBar {
        padding: 0.8rem;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    /* Users can optionally enable dark mode styles here */
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    #navigationMenu li a,
    #siteLogo,
    h1, h2, h3, h4, h5, h6,
    p, li {
        color: #000000;
    }
    
    #heroButton,
    #contactSubmit,
    .btn-primary,
    .btn-secondary {
        border: 2px solid #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    #mainHeader,
    #hamburgerMenu,
    #navigationMenu,
    #mainFooter,
    #heroButton,
    #contactSubmit {
        display: none;
    }
    
    #mainContent {
        margin-top: 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    #heroSection,
    #aboutHeroSection,
    #contactHeroSection,
    #featuresSection,
    #whyChooseSection,
    #missionSection,
    #valuesSection,
    #teamSection,
    #approachSection,
    #contactFormSection,
    #faqSection {
        background: white !important;
        color: black !important;
    }
}