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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 100px;
    border: 1px solid #530245;
}

.btn-primary {
    background-color: #530245;
    color: white;
}

.btn-primary:hover {
    background-color: #fff;
    color: #530245;
}
/* Download Icon */
.download-icon {
    flex-shrink: 0;
    transition: fill 0.3s ease;
}

.btn-primary .download-icon {
    fill: #ffffff;
}

.btn-primary:hover .download-icon {
    fill: #530245;
}

.btn-secondary .download-icon {
    fill: #530245;
}

.btn-secondary:hover .download-icon {
    fill: #ffffff;
}

.btn-secondary {
    background-color: #fff;
    color: #530245;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #530245;
}

.btn-more {
    border: none;
    background-color: #B9D6FE;
    color: #530245;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #B9D6FE;
}

.btn-more:hover {
    border: 1px solid #530245;
}
/* Disabled button styles */
.btn:disabled,
button:disabled,
a:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
}

.btn:disabled:hover,
button:disabled:hover,
a:disabled:hover {
    background-color: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Specific disabled styles for primary buttons */
.btn-primary:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
}

/* Specific disabled styles for secondary buttons */
.btn-secondary:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
}

.btn-large {
    padding: 32px 80px;
    font-size: 24px;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    background-color: #E4EEF0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #530245;
}

.logo-svg {
    height: 42px;
    width: auto;
    max-width: 187px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #530245;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #530245;
}

/* Hero Section */
.hero {
    background-color: #E4EEF0;;
    padding: 80px 0;
    text-align: center;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.8rem;
    color: #530245;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #530245;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    margin: 0 auto;
}

.hero .disclaimer {
    margin-top: 32px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    color: rgba(3, 12, 87, 0.30);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero .disclaimer-text {
    color: rgba(3, 12, 87, 0.30);
    margin-bottom: 10px;
}

.checkbox {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    top: 2px;
}

.checkbox:checked + .checkmark {
    background-color: #E4EEF0;
    border-color: rgba(3, 12, 87, 0.30);
}

.checkbox:checked + .checkmark::after {
    content: '✓';
    color: rgba(3, 12, 87, 0.30);
    font-size: 12px;
    font-weight: bold;
}

.link {
    color: #267AF1;
    text-decoration: underline;
}

.link:hover {
    color: #4A148C;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #530245;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #530245;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    height: 100px;
}

.feature-icon img {
    object-fit: none;
}

.feature-title {
    font-size: 1.5rem;
    color: #530245;
    margin-bottom: 16px;
    font-weight: 500;
}

.feature-description {
    color: #530245;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #F5F9F9;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card-large {
    border: 1px solid #E0E8F7;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(90, 24, 154, 0.1);
}

.feature-icon-large {
    margin-bottom: 40px;
    display: flex;
    justify-content: left;
}

.feature-icon-large img {
    width: auto;
    height: 150px;
    object-fit: contain;
}

.feature-title-large {
    text-align: left;
    font-size: 1.3rem;
    color: #530245;
    margin-top: 16px;
    margin-bottom: 40px;
    font-weight: 500;
}

.feature-description-large {
    color: #530245;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-title {
    font-size: 2.5rem;
    color: #1B2232;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #530245;
    line-height: 1.6;
}

.faq-list {
    margin-bottom: 32px;
}

.faq-item {
    border-bottom: 1px solid #E0E8F7;
    cursor: pointer;
}

.faq-question-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: color 0.3s ease;
}

.faq-question-container:hover {
    color: #530245;
}

.faq-question {
    font-weight: 500;
    color: #530245;
}

.faq-arrow {
    color: #666;
    transition: transform 0.3s ease;
}

.faq-question-container:hover .faq-arrow {
    transform: translateX(4px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-item.open .faq-arrow {
    transform: rotate(90deg);
}

/* CTA Section */
.cta {
    background: linear-gradient(112deg, var(--purple, #530245) 27.07%, var(--light-blue, #B9D6FE) 89.07%);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #8FD2FF;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 40px 0px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-more {
    padding: 32px 80px;
    font-size: 24px;
}

/* content pages styles */
.effective-date {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.full-content {
    padding: 60px 0;
    margin: 0 auto;
}

.full-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.full-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.full-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.full-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.full-content li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.full-content strong {
    color: #333;
    font-weight: 600;
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #530245;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    margin: 0 auto;
}

.faq-cta {
    text-align: left;
    margin-top: 4rem;
    border-radius: 8px;
}

.faq-cta h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #530245;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.faq-email {
    color: #1B1EFF;
    text-decoration: none;
    font-weight: 600;
}

.faq-email:hover {
    text-decoration: underline;
}

/* Uninstall Page Styles */
.uninstall-section {
    padding: 80px 0;
    background-color: #fff;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.uninstall-title {
    font-size: 3rem;
    font-weight: 700;
    color: #530245;
    text-align: center;
    margin-bottom: 1rem;
}

.uninstall-subtitle {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.uninstall-section .steps-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.uninstall-section .step-box {
    flex: 1;
    border: 2px solid #530245;
    border-radius: 8px;
    padding: 2rem;
    background-color: #fff;
    text-align: left;
    max-width: 350px;
}

.uninstall-section .step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.uninstall-section .step-number {
    font-weight: 700;
    color: #530245;
}

.uninstall-section .step-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Uninstall Page */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .step-box {
        max-width: none;
    }
    
    .uninstall-title {
        font-size: 2.5rem;
    }
    
    .uninstall-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Contact Us Page Styles */
.short-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.short-illustration {
    position: relative;
    margin: 0 auto 3rem;
}


.short-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #530245;
    margin-bottom: 1.5rem;
}

.short-description {
    font-size: 1.1rem;
    color: #530245;
    margin-bottom: 0.2rem;
    margin-left: auto;
    margin-right: auto;
}

.short-email {
    display: inline-block;
    font-size: 1.2rem;
    color: #007bff;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 1rem;
}

.short-email:hover {
    color: #0056b3;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-illustration {
        width: 250px;
        height: 200px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 80px 0;
    background-color: #fff;
}

.about-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #530245;
    margin-bottom: 1.5rem;
    flex: 1;
}

.about-hero .hero-description {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.why-choose-section {
    padding: 80px 0;
    background-color: #E4EEF0;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #530245;
    text-align: center;
    margin-bottom: 1rem;
}

.why-choose-section .section-subtitle {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-section .feature-card {
    border: 1px solid #530245;
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
}

.why-choose-section .feature-badge {
    font-size: 0.9rem;
    color: #FD6500;
    margin-bottom: 1rem;
}

.why-choose-section .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #530245;
    margin-bottom: 1rem;
}

.why-choose-section .feature-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.team-section {
    padding: 80px 0;
    background-color: #B9D6FE;
}

.team-section .team-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.team-section .team-text {
    flex: 1;
}

.team-section .team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #530245;
    margin-bottom: 2rem;
}

.team-section .team-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-section .team-illustration {
    flex: 1;
    position: relative;
    height: 300px;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .team-title {
        font-size: 2rem;
    }
    
    .team-illustration {
        height: 200px;
    }
}

/* CCPA Page Styles */
.ccpa-section {
    padding: 80px 0;
    background-color: #fff;
}

.ccpa-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ccpa-title {
    font-size: 3rem;
    font-weight: 700;
    color: #530245;
    margin-bottom: 0.5rem;
}

.last-modified {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.ccpa-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #fff;
    border: 1px solid #ddd;
}

.ccpa-table th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.ccpa-table td {
    padding: 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.ccpa-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.ccpa-table tr:hover {
    background-color: #e9ecef;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.support-email {
    color: #530245;
    text-decoration: none;
    font-weight: 600;
}

.support-email:hover {
    text-decoration: underline;
}

/* Responsive Design for CCPA Page */
@media (max-width: 768px) {
    .ccpa-title {
        font-size: 2.5rem;
    }
    
    .ccpa-table {
        font-size: 0.9rem;
    }
    
    .ccpa-table th,
    .ccpa-table td {
        padding: 8px;
    }
}

/* Footer */
.footer {
    background-color: #E4EEF0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    font-size: 24px;
    color: #530245;
    margin-bottom: 16px;
    display: block;
}

.footer-description {
    color: #530245;
    margin-bottom: 24px;
    line-height: 1.6;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-label {
    font-weight: 600;
    color: #530245;
}

.support-email {
    color: #8542F0;
    text-decoration: underline;
    font-weight: 500;
}

.support-email:hover {
    color: #4A148C;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    color: #530245;
}

.footer-column-title {
    font-size: 1.125rem;
    color: #530245;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: #530245;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #530245;
}

.footer-bottom {
    border-top: 1px solid #D1D9E8;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #530245;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid-large {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card-large {
        padding: 30px 20px;
    }
    
    .why-choose,
    .features,
    .faq {
        padding: 60px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
    
    .feature-card-large {
        padding: 25px 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.footer-link:focus,
.link:focus {
    outline: 2px solid #530245;
    outline-offset: 2px;
}

/* Remove focus outline for buttons */
.btn:focus {
    outline: none;
}

/* Remove any click effects */
.btn:active {
    transform: none;
    box-shadow: none;
}

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

.feature-card,
.feature-card-large {
    animation: fadeInUp 0.6s ease-out;
}

/* About Page Styles */
.about-hero {
    background-color: white;
    padding: 80px 0;
    text-align: left;
}

.about-hero-content {
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3rem;
    color: #530245;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

.why-choose-about {
    padding: 80px 0;
    background-color: white;
}

.feature-badge {
    display: inline-block;
    color: #FD6500;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 16px;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-title {
    font-size: 2.5rem;
    color: #530245;
    margin-bottom: 24px;
    line-height: 1.2;
}

.team-description {
    font-size: 1.125rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Disclaimer Page Styles */
.disclaimer-main {
    background-color: white;
    padding: 80px 0;
}

.disclaimer-title {
    font-size: 2.5rem;
    color: #530245;
    text-align: center;
    margin-bottom: 16px;
}

.disclaimer-date {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.disclaimer-section {
    margin-bottom: 32px;
}

.disclaimer-section-title {
    font-size: 1.25rem;
    color: #530245;
    margin-bottom: 12px;
    font-weight: 600;
}

.disclaimer-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
}

.disclaimer-link {
    color: #530245;
    text-decoration: underline;
}

.disclaimer-link:hover {
    color: #4A148C;
}

/* Thanks Page Styles */
.thanks-main {
    background-color: white;
    padding: 80px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-illustration {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 2.5rem;
    color: #530245;
    margin-bottom: 16px;
    line-height: 1.2;
}

.thanks-message {
    font-size: 1.125rem;
    color: #530245;
    font-weight: 500;
}

/* Logo Link */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
}

/* Active Footer Link */
.footer-link.active {
    color: #530245;
    font-weight: 600;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-title {
        font-size: 2rem;
    }
    
    .disclaimer-title {
        font-size: 2rem;
    }
    
    .thanks-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .team-title {
        font-size: 1.75rem;
    }
    
    .disclaimer-title {
        font-size: 1.75rem;
    }
    
    .thanks-title {
        font-size: 1.75rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero,
    .cta {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid black;
        background: white !important;
        color: black !important;
    }
}
