.policies-content {
    padding: 80px 0;
    background-color: #fff;
}

.policy-block {
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-block h2 {
    color: #003366;
    margin-bottom: 15px;
}

.policy-block ul {
    margin-left: 20px;
    margin-top: 15px;
    color: #555;
}

.policy-block li {
    margin-bottom: 10px;
}

/* --- TERMS & CONDITIONS PAGE --- */
.terms-section {
    padding: 80px 0;
    background-color: #fff;
}

.terms-block {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.terms-block h2 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.terms-block p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Standard bullet list */
.terms-list {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.terms-list li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* --- Special ICAN Terms Box --- */
.ican-terms {
    background-color: #f9fcff; /* Light blue tint */
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e6f2ff;
    border-left: 5px solid #C5A059; /* Gold accent */
}

.ican-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: none; /* Override standard header border */
}

.ican-header h2 {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.numbered-terms {
    margin-left: 20px;
    color: #444;
}

.numbered-terms li {
    margin-bottom: 15px;
    padding-left: 10px;
    line-height: 1.6;
}

.numbered-terms strong {
    color: #003366;
}

/* Responsive */
@media (max-width: 600px) {
    .ican-terms {
        padding: 20px;
    }
}

/* --- CONTACT PAGE STYLES --- */

/* Hero Reuse */
.page-hero {
    background: linear-gradient(to right, #ffffff 40%, #e6f2ff 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

/* Layout */
.contact-section {
    padding: 80px 0 0 0; /* No bottom padding because map is there */
}

.contact-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-col {
    flex: 1;
}

.contact-form-col {
    flex: 1;
}

/* Headers */
.sub-title {
    color: #C5A059; /* Gold */
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header-left h2 {
    color: #003366;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header-left p {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Info Items */
.info-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #f0f8ff;
    color: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-text h4 {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.info-text a {
    color: #003366;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

/* Locations Box */
.locations-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.main-location {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.main-location i {
    color: #C5A059;
    font-size: 24px;
    margin-top: 5px;
}

.main-location h4 {
    color: #003366;
    font-size: 18px;
    margin-bottom: 5px;
}

.main-location p {
    color: #555;
    line-height: 1.5;
}

.other-locations h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.other-locations ul {
    list-style: none;
   /* max-height: 200px; /* Makes the list scrollable if too long */
    /*overflow-y: auto;*/
   /* padding-right: 10px;*/
}

/* Custom Scrollbar for locations */
.other-locations ul::-webkit-scrollbar {
    width: 5px;
}
.other-locations ul::-webkit-scrollbar-thumb {
    background: #ddd; 
    border-radius: 5px;
}

.other-locations li {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 10px;
}

.other-locations strong {
    color: #003366;
}

/* Social Links */
.social-links-contact a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #003366;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links-contact a:hover {
    background-color: #C5A059;
}

/* Form Styling */
.form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 5px solid #C5A059;
}

.form-box h3 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 10px;
}

.form-box p {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #C5A059; /* Gold Icons */
    z-index: 1;
}

.input-group .textarea-label {
    top: 20px;
    transform: none;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px; /* Padding left leaves room for icon */
    border: 1px solid #eee;
    background-color: #f9fcff;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.input-group textarea {
    border-radius: 20px;
    resize: none;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #003366;
    background-color: #fff;
}

.btn-full {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

/* Form Status Messages */
#form-status {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    display: none; /* Hidden by default */
}

.status-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Container */
.map-container iframe {
    display: block; /* Removes bottom gap */
}

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .info-grid {
        flex-direction: column;
        gap: 20px;
    }
}