* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.primaryNavigationBar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #2563eb;
}

.navigationContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.brandIdentitySection {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brandLogo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brandNameLink {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brandNameLink:hover {
    color: #1d4ed8;
}

.mainMenuNavigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menuItemLink {
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.menuItemLink:hover,
.activeMenuItem {
    color: #2563eb;
    background-color: #f1f5f9;
}

.primaryContentArea {
    margin-top: 80px;
}

.silverHomeSection {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.backgroundAnimationLayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floatingIcon {
    position: absolute;
    color: #cbd5e1;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatAnimation 20s infinite linear;
}

.lockIcon {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cardIcon {
    top: 60%;
    left: 20%;
    animation-delay: -5s;
}

.phoneIcon {
    top: 30%;
    right: 15%;
    animation-delay: -10s;
}

.shieldIcon {
    top: 70%;
    right: 25%;
    animation-delay: -15s;
}

.bankIcon {
    top: 50%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

.homeContentWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.welcomeTextArea {
    text-align: left;
}

.primaryWelcomeHeading {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcomeDescriptionText {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.learnBasicsButton {
    background-color: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learnBasicsButton:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.rightContentPanel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.aboutUsPreviewCard {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.aboutUsPreviewCard:hover {
    transform: translateY(-5px);
}

.aboutPreviewImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.aboutPreviewContent {
    padding: 1.5rem;
}

.aboutPreviewContent h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.aboutPreviewContent p {
    color: #64748b;
    margin-bottom: 1rem;
}

.aboutPreviewLink {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.aboutPreviewLink:hover {
    color: #1d4ed8;
}

.pensionProtectionCard {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease;
}

.pensionProtectionCard:hover {
    transform: translateY(-5px);
}

.protectionCardIcon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.protectionCardContent h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.protectionCardContent p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.protectionGuideButton {
    background-color: white;
    color: #2563eb;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.protectionGuideButton:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.sectionContentWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.sectionMainTitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.trustedEducationSection {
    background-color: #f8fafc;
}

.educationFeaturesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featureCard {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featureCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.featureIcon {
    background-color: #2563eb;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.featureCard h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.featureCard p {
    color: #64748b;
    line-height: 1.6;
}

.financialTopicsSection {
    background-color: white;
}

.topicsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.topicCard {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.topicCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.topicImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.topicContent {
    padding: 1.5rem;
}

.topicContent h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.topicContent p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.topicLearnButton {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.topicLearnButton:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.supportContactSection {
    background-color: #f8fafc;
}

.supportOptionsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.supportOption {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.supportOption:hover {
    transform: translateY(-5px);
}

.supportIcon {
    background-color: #10b981;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.supportOption h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.supportOption p {
    color: #64748b;
    margin-bottom: 1rem;
}

.supportContactLink {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.supportContactLink:hover {
    color: #1d4ed8;
}

.testimonialStoriesSection {
    background-color: white;
}

.testimonialGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonialCard {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #2563eb;
    transition: all 0.3s ease;
}

.testimonialCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonialText {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonialAuthor strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonialAuthor span {
    color: #64748b;
    font-size: 0.9rem;
}

.startJourneySection {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.startJourneySection .sectionMainTitle {
    color: white;
}

.journeyDescription {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.startJourneyButton {
    background-color: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.startJourneyButton:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.quickAccessSection {
    background-color: #f8fafc;
}

.quickAccessGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.accessCard {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accessCard:hover {
    transform: translateY(-5px);
}

.accessIcon {
    background-color: #f59e0b;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.accessCard h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.accessCard p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.accessButton {
    background-color: #f59e0b;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.accessButton:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.primaryFooterSection {
    background-color: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footerContentWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footerMainContent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footerBrandSection h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footerBrandSection p {
    color: #94a3b8;
    line-height: 1.6;
}

.footerNavigationSection h4,
.footerLegalSection h4,
.footerContactSection h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footerNavList {
    list-style: none;
}

.footerNavList li {
    margin-bottom: 0.5rem;
}

.footerNavList a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerNavList a:hover {
    color: #2563eb;
}

.footerContactSection p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footerContactSection i {
    color: #2563eb;
    width: 20px;
}

.footerBottomSection {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
}

.footerBottomSection p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.contactFormWrapper {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.contactMainSection {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.contactContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contactFormSection {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contactFormTitle {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.formGroup {
    margin-bottom: 1.5rem;
}

.formLabel {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 1.1rem;
}

.formInput,
.formTextarea,
.formSelect {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.formInput:focus,
.formTextarea:focus,
.formSelect:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.formTextarea {
    resize: vertical;
    min-height: 120px;
}

.submitContactButton {
    background-color: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submitContactButton:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.contactInfoSection {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contactInfoTitle {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.contactInfoItem {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.contactInfoIcon {
    background-color: #2563eb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contactInfoContent h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contactInfoContent p {
    color: #64748b;
    margin: 0;
}

.hoursSection {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.hoursSection h4 {
    margin-bottom: 1rem;
    text-align: center;
}

.hoursGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.errorMessage {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.successPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    text-align: center;
    max-width: 400px;
    width: 90%;
    display: none;
}

.successPopup.show {
    display: block;
    animation: popupShow 0.3s ease;
}

.popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.popupOverlay.show {
    display: block;
}

@keyframes popupShow {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.successIcon {
    color: #10b981;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.successPopup h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.successPopup p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.closePopupBtn {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.pageHeaderSection {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0 2rem;
    margin-top: 80px;
}

.pageHeaderContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.pageMainTitle {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pageDescription {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.aboutContentSection {
    padding: 4rem 0;
}

.aboutContentWrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.aboutTextContent {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.aboutTextContent h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.aboutTextContent p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonialsSection {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.testimonialsWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonialsTitle {
    font-size: 2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonialItem {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.testimonialItem p {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonialAuthor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.authorAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.authorInfo strong {
    color: #1e293b;
    display: block;
}

.authorInfo span {
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .navigationContainer {
        padding: 1rem;
    }
    
    .brandNameLink {
        font-size: 1.2rem;
    }
    
    .mainMenuNavigation ul {
        gap: 1rem;
    }
    
    .menuItemLink {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .homeContentWrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .primaryWelcomeHeading {
        font-size: 2rem;
    }
    
    .welcomeDescriptionText {
        font-size: 1.1rem;
    }
    
    .sectionMainTitle {
        font-size: 2rem;
    }
    
    .educationFeaturesGrid,
    .topicsGrid,
    .supportOptionsGrid,
    .quickAccessGrid {
        grid-template-columns: 1fr;
    }
    
    .testimonialGrid {
        grid-template-columns: 1fr;
    }
    
    .contactContentGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footerMainContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pageMainTitle {
        font-size: 2rem;
    }
    
    .pageDescription {
        font-size: 1.1rem;
    }
    
    .aboutTextContent {
        padding: 2rem;
    }
    
    .testimonialsGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navigationContainer {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .primaryWelcomeHeading {
        font-size: 1.8rem;
    }
    
    .welcomeDescriptionText {
        font-size: 1rem;
    }
    
    .sectionContentWrapper {
        padding: 2rem 1rem;
    }
    
    .sectionMainTitle {
        font-size: 1.8rem;
    }
    
    .contactFormWrapper {
        padding: 0 1rem;
    }
    
    .pageHeaderContent {
        padding: 0 1rem;
    }
    
    .aboutContentWrapper {
        padding: 0 1rem;
    }
    
    .testimonialsWrapper {
        padding: 0 1rem;
    }
}

/* Additional styles for new pages - add to existing styles.css */

/* About Page Styles */
.missionValuesSectionWrapper {
    background-color: #f8fafc;
    padding: 4rem 0;
    margin-top: 2rem;
}

.valuesGridLayout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.valueCardItem {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.valueCardItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.valueCardIcon {
    background-color: #2563eb;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.valueCardItem h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.valueCardItem p {
    color: #64748b;
    line-height: 1.6;
}

.ourTeamSection {
    background-color: white;
}

.commitmentGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commitmentCard {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.commitmentCard:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
}

.commitmentIcon {
    background-color: #10b981;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.commitmentCard h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.commitmentCard p {
    color: #64748b;
    line-height: 1.6;
}

.joinCommunitySection {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.joinCommunitySection .sectionMainTitle {
    color: white;
}

.communityDescription {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.joinCommunityButton {
    background-color: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.joinCommunityButton:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Contact Page Styles */
.contactFormElement {
    width: 100%;
}

.emergencyContactSection {
    background-color: #fef2f2;
    border-top: 4px solid #dc2626;
}

.emergencyContactGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.emergencyContactCard {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #dc2626;
}

.emergencyIcon {
    background-color: #dc2626;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.emergencyContactCard h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.emergencyContactCard p {
    color: #64748b;
    margin-bottom: 1rem;
    text-align: center;
}

.emergencyContactInfo {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.emergencyContactInfo p {
    margin-bottom: 0.5rem;
    color: #374151;
}

.emergencyContactInfo a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.emergencyContactInfo a:hover {
    color: #1d4ed8;
}

.visitOfficeSection {
    background-color: #f8fafc;
}

.officeInfoWrapper {
    align-items: start;
}

.officeDescriptionContent h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.officeDescriptionContent p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accessibilityInfo,
.publicTransportInfo {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accessibilityInfo h4,
.publicTransportInfo h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accessibilityInfo i,
.publicTransportInfo i {
    color: #2563eb;
}

.accessibilityList {
    list-style: none;
    padding: 0;
}

.accessibilityList li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.accessibilityList li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.officeMapPlaceholder {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapPlaceholderContent {
    width: 100%;
}

.mapIcon {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.mapPlaceholderContent h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.mapPlaceholderContent p {
    color: #64748b;
    margin-bottom: 0.25rem;
}

.directionsButton {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.directionsButton:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Legal Pages Styles */
.legalContentSection {
    background-color: white;
    padding: 4rem 0;
}

.legalContentWrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legalDocumentContent {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.lastUpdatedInfo {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.lastUpdatedInfo p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.legalDocumentContent h2 {
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.legalDocumentContent h2:first-of-type {
    margin-top: 0;
}

.legalDocumentContent h3 {
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legalDocumentContent p {
    color: #64748b;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.legalList {
    color: #64748b;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legalList li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contactInfoBox {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contactInfoBox p {
    margin-bottom: 0.5rem;
    color: #374151;
}

.contactInfoBox strong {
    color: #1e293b;
}

/* Cookie Policy Specific Styles */
.cookieExampleBox {
    background-color: #f0f9ff;
    border-left: 4px solid #2563eb;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.cookieExampleBox p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.cookieExampleBox ul {
    margin-bottom: 0;
}

.browserInstructionsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.browserInstructions {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.browserInstructions h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.browserInstructions i {
    color: #2563eb;
}

.browserInstructions p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    font-family: monospace;
}

.cookieSummaryBox {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.cookieSummaryBox h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cookieSummaryBox i {
    color: #2563eb;
}

.cookieSummaryBox p {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .valuesGridLayout,
    .commitmentGrid,
    .emergencyContactGrid {
        grid-template-columns: 1fr;
    }
    
    .officeInfoWrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .browserInstructionsGrid {
        grid-template-columns: 1fr;
    }
    
    .legalDocumentContent {
        padding: 2rem;
    }
    
    .contactContentGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookieSummaryBox {
        padding: 1.5rem;
    }
    
    .cookieSummaryBox h3 {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .legalContentWrapper {
        padding: 0 1rem;
    }
    
    .legalDocumentContent {
        padding: 1.5rem;
    }
    
    .contactFormWrapper {
        padding: 0 1rem;
    }
    
    .valueCardItem,
    .commitmentCard,
    .emergencyContactCard {
        padding: 1.5rem;
    }
    
    .valueCardIcon,
    .commitmentIcon,
    .emergencyIcon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}