
:root {
    --primary-navy: #293857;
    --secondary-gold: #FFC107;
    --light-gray: #F5F5F5;
    --text-dark: #000;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --link-blue: #007BFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
}

/* Main wrapper styling */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/680677ce4372909c10c19348.png') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}
.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
	color:#fff;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

/* Content Header */
.content-header {
    margin-bottom: 40px;
}

.amcob-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 0;
    line-height: 1.2;
}

/* Privacy Introduction */
.privacy-intro {
    margin-bottom: 30px;
}

.privacy-intro p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.policy-link {
    color: var(--link-blue);
    text-decoration: none;
}

.policy-link:visited {
    color: var(--link-blue);
}

/* Policy Points */
.policy-points {
    margin-bottom: 40px;
}

.policy-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.point-bullet {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 2px;
    min-width: 8px;
}

.point-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-content {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.section-content p {
    margin-bottom: 20px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Access Points */
.access-points {
    margin-top: 20px;
}

.access-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

/* Contact Notice */
.contact-notice {
    font-weight: 600;
    margin-top: 25px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .privacy-content-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .privacy-content-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-content-section {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-content {
        font-size: 0.95rem;
    }
    
    .privacy-intro p,
    .point-text {
        font-size: 0.95rem;
    }
    
    .amcob-title {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-content {
        font-size: 0.9rem;
    }
    
    .privacy-intro p,
    .point-text {
        font-size: 0.9rem;
    }
    
    .policy-point,
    .access-point {
        margin-bottom: 10px;
    }
    
    .point-bullet {
        margin-right: 10px;
    }
    
    .policy-section {
        margin-bottom: 40px;
    }
    
    .content-header {
        margin-bottom: 30px;
    }
}

/* Text Selection */
::selection {
    background-color: var(--secondary-gold);
    color: var(--text-dark);
}

/* Print Styles */
@media print {
    .hero-section {
        display: none;
    }
    
    .privacy-content-section {
        padding: 20px 0;
    }
    
    body {
        background-color: var(--white);
        font-size: 12pt;
    }
    
    .page-title {
        font-size: 18pt;
        color: black;
    }
    
    .section-title {
        font-size: 14pt;
        color: black;
    }
    
    .policy-link {
        color: black;
        text-decoration: underline;
    }
}