@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Privacy Policy Styles - Updated with Brand Colors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #363C4F;
    background-color: #fff;
    line-height: 1.6;
}

/* Policy Page Container */
.policy-page {
    margin: 40px 45px;
    padding: 0 20px;
}

/* Policy Header */
.policy-header {
    text-align: left;
    margin-bottom: 40px;
    /* border: 1px solid rgba(211, 163, 28, 0.1); */
}

.policy-header h1 {
    font-size: 3.5rem;
    color: #363C4F;
    margin-bottom: 10px;
    font-weight: 600;
}

.policy-meta {
    display: flex;
    justify-content: left;
    gap: 30px;
    margin: 0px 0 25px;
    flex-wrap: wrap;
}

.policy-meta span {
    font-size: 0.9rem;
    color: #6D81AA;
    background: #f1f1f1;
    padding: 5px 15px;
    border-radius: 25px;
    border: 1px solid #363C4F;
}

.policy-meta strong {
    color: #363C4F;
    font-weight: 600;
}

.policy-actions {
    display: flex;
    justify-content: left;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 10px 15px;
    border: 1px solid #363c4f33;
    background: rgba(211, 162, 28, 0.486);
    max-width: fit-content;
    border-radius: 10px;
}

.action-btn {
    background: white;
    border: 2px solid #363c4f48;
    color: #363C4F;
    padding: 5px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn i {
    font-size: 1rem;
}

/* Policy Layout */
.policy-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Table of Contents - Vertical Arrangement */
.policy-toc {
    padding: 15px;
    border: 1px solid rgba(109, 129, 170, 0.15);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.policy-toc h3 {
    color: #363C4F;
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #D3A31C;
    font-weight: 600;
}

.policy-toc ul {
    list-style: none;
    display: grid;
}

.policy-toc a {
    display: block;
    color: #6D81AA;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Policy Content */
.policy-content {
    background: white;
    padding: 20px;
    border: 1px solid rgba(109, 129, 170, 0.1);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(109, 129, 170, 0.1);
    scroll-margin-top: 120px;
}

.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.4rem;
    color: #363C4F;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #D3A31C;
    font-weight: 700;
    display: inline-block;
}

.policy-section h3 {
    font-size: 1.2rem;
    color: #AA7218;
    margin: 25px 0 15px;
    font-weight: 600;
}

.policy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Lists */
.bullet-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 20px 0;
}

.bullet-list li {
    padding: 10px 0;
    color: #555;
    line-height: 1.6;
}

/* Special Elements */
.policy-note {
    background: #FFF8E1;
    border-left: 4px solid #D3A31C;
    padding: 20px;
    margin: 25px 0;
    color: #363C4F;
    font-size: 1rem;
}

.policy-note strong {
    color: #AA7218;
}

.contact-details {
    padding: 25px;
    border: 1px solid rgba(109, 129, 170, 0.15);
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.contact-details strong {
    color: #363C4F;
    min-width: 120px;
}

.contact-details a {
    color: #AA7218;
    text-decoration: none;
    font-weight: 500;
}

/* Highlight active section */
.policy-section:target {
    background: rgba(252, 236, 157, 0.1);
    padding: 25px;
    animation: highlightSection 0.5s ease;
}

@keyframes highlightSection {
    0% {
        background: rgba(252, 236, 157, 0.3);
    }
    100% {
        background: rgba(252, 236, 157, 0.1);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .policy-page {
        max-width: 100%;
        margin: 90px 20px 30px;
        padding: 0 15px;
    }
    
    .policy-layout {
        gap: 30px;
    }
    
    .policy-content {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }
    
    .policy-toc {
        display: none;
    }
    
    .policy-content {
        order: 1;
        width: 100%;
    }
    
    .policy-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .policy-page {
        margin: 80px 15px 25px;
        padding: 0 10px;
    }
    
    .policy-header {
        padding: 25px 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .policy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .policy-content {
        padding: 25px;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-page {
        margin: 70px 10px 20px;
        padding: 0;
    }
    
    .policy-header {
        padding: 20px 15px;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
    
    .contact-details {
        padding: 20px;
    }
    
    .contact-details p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Print Styles */
@media print {
    .policy-page {
        margin: 0;
        padding: 0;
    }
    
    .policy-header {
        border: 1px solid #ddd;
    }
    
    .policy-actions {
        display: none;
    }
    
    .policy-toc {
        display: none;
    }
    
    .policy-layout {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        border: 1px solid #ddd;
        padding: 30px;
    }
    
    .action-btn {
        display: none;
    }
}