/* Privacy Policy Page Styles */
.privacy-header {
    background: linear-gradient(135deg, #339699, #297386);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 60px;
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 600;
}

.privacy-content {
    padding: 3rem 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.last-modified {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-section h2 {
    color: #339699;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.policy-section ul {
    margin-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .privacy-header {
        padding: 3rem 1rem;
        margin-top: 100px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 2rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .policy-section {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .privacy-header {
        padding: 2rem 1rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .policy-section {
        padding: 1rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    .privacy-header {
        background: none;
        color: black;
        padding: 1rem 0;
    }

    .privacy-content {
        background: none;
    }

    .policy-section {
        box-shadow: none;
        padding: 1rem 0;
        break-inside: avoid;
    }
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #333;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #297386;
}

.nav-item i {
    font-size: 1.1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    color: #297386;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: rgba(26, 115, 232, 0.1);
}

.get-started-btn {
    background-color: #297386;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.get-started-btn:hover {
    background-color: #297386;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .nav-item span {
        display: none;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-item i {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        justify-content: center;
    }

    .nav-item span {
        display: inline;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .login-btn, .get-started-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        margin-left: auto;
    }
}

/* Footer Styles */
.footer {
    background-color: #339699;
    color: white;
    padding: 3rem 6rem 2rem;
}

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

.footer-logo {
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #000000;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-column ul li i {
    color: #ffffff;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #297386;
}

.footer-column ul li.coming-soon {
    color: #fff;
    font-style: italic;
    font-size: 0.9rem;
}

.footer-column.support {
    display: flex;
    align-items: flex-start;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #000000;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.support-link:hover {
    opacity: 0.8;
    color: #ffffff;
}

.support-link i {
    font-size: 1.4rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 ;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}



.social-links {
    display: flex;
    gap: 1.5rem;
}
.social-icons {
    margin-bottom: 0.5rem;
}

.social-icons a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: all 0.2s;
}

.social-icons a:hover {
    transform: translateY(-2px);
}



/* Responsive Footer */
@media screen and (max-width: 992px) {
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column.support {
        grid-column: span 2;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column.support {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-column ul li a,
    .footer-column ul li.coming-soon {
        font-size: 0.9rem;
    }

    .support-link {
        font-size: 1.1rem;
    }
}
