/* --- ICAN PAGE HERO --- */
.ican-hero {
    position: relative;
    background-image: url('hero.jpg'); /* Uses your hero image */
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Deep Blue Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Blue to Transparent gradient */
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 51, 102, 0.8) 100%);
}

.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    color: #C5A059; /* Gold */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}

.ican-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 20px;
    color: #e6f2ff; /* Very light blue text */
    max-width: 600px;
    margin: 0 auto;
}



/* Breadcrumbs (Home > ICAN Program) */
.breadcrumbs {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Actions Container */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px; /* Space between button and phone number */
    margin-top: 30px;
}

/* The Gold Button is already defined in your CSS as .btn-gold 
   If not, ensure you have this: */
.btn-gold {
    background-color: #C5A059;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-gold:hover {
    background-color: #b08d45;
}

/* Phone Link Styling */
.phone-link {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link i {
    color: #C5A059; /* Gold Phone Icon */
}

.phone-link:hover {
    color: #003366; /* Changes to blue on hover */
}




/* --- PURPOSE SECTION --- */
.purpose-section {
    padding: 80px 0;
    background-color: #fff; /* Clean white background */
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Left side is wider */
    gap: 60px;
    align-items: center; /* Vertically center them */
}

/* --- Left Side Styling --- */
.section-title {
    color: #003366;
    font-size: 28px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-gold {
    color: #C5A059;
    font-size: 32px;
}

/* Custom List with Gold Bullets */
.custom-list {
    list-style: none;
    margin-bottom: 30px;
}

.custom-list li {
    position: relative;
    padding-left: 25px; /* Space for the bullet */
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.custom-list li::before {
    content: "•"; /* Bullet point */
    color: #C5A059; /* Gold color */
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -5px;
}

/* The "Definition" Box */
.definition-box {
    background-color: #f0f7ff; /* Very light blue */
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366; /* Accent line on the left */
}

.definition-box p {
    color: #003366;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* --- Right Side: Suitability Card --- */
.suitability-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Soft floating shadow */
    text-align: center;
    border-top: 5px solid #dbeaff; /* Subtle light blue top border */
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: #fff8e1; /* Light Gold background */
    color: #C5A059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px auto;
}

.suitability-card h3 {
    color: #003366;
    font-size: 22px;
    margin-bottom: 15px;
}

.suitability-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .purpose-grid {
        grid-template-columns: 1fr; /* Stack on top of each other */
        gap: 40px;
    }
    
    .suitability-card {
        padding: 30px 20px;
    }
}

/* --- ELIGIBILITY SECTION --- */
.eligibility-section {
    padding: 80px 0;
    background-color: #f9fcff; /* Very faint blue tint to separate from white section above */
}

.eligibility-header {
    text-align: left; /* Aligned left as per image */
    margin-bottom: 50px;
    max-width: 800px;
}

.eligibility-header h2 {
    color: #003366;
    font-size: 28px;
    margin-bottom: 15px;
}

.eligibility-header p {
    color: #555;
    line-height: 1.6;
}

/* --- The Grid Layout --- */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Equal Columns */
    gap: 25px;
}

/* Individual Card Styling */
.eligibility-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #eee; /* Subtle border */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-5px); /* Moves up on hover */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icon Circle Styling */
.card-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #fff8e1; /* Light Gold background */
    color: #003366; /* Dark Blue Icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
}

.eligibility-card h3 {
    color: #003366;
    font-size: 18px;
    margin-bottom: 15px;
}

.eligibility-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px; /* Ensures cards stay same height even with short text */
}

.eligibility-card a {
    color: #003366;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.eligibility-card a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .eligibility-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .eligibility-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* --- INTEGRITY SECTION --- */
.integrity-section {
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.integrity-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side: Text & Grid */
.integrity-text {
    flex: 1;
}

.integrity-text h2 {
    color: #003366;
    font-size: 28px;
    margin-bottom: 40px;
}

.integrity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 30px;
}

.integrity-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.num-circle {
    min-width: 40px;
    height: 40px;
    background-color: #fff8e1; /* Light Gold */
    color: #C5A059; /* Gold Text */
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px; /* Aligns with the top of the title */
}

.item-text h3 {
    color: #003366;
    font-size: 16px;
    margin-bottom: 8px;
}

.item-text p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* Right Side: Image */
.integrity-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.integrity-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 20px; /* Rounded corners */
    /* Optional: Organic blob shape if desired, otherwise standard rounded rect */
    border-radius: 30px 30px 30px 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- CTA STRIP (Bottom Bar) --- */
.cta-strip {
    padding: 50px 0;
    background-color: #fff; /* White background */
    border-top: 1px solid #eee; /* Subtle separator line */
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Wraps on smaller screens */
    gap: 20px;
}

.cta-header h2 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-contact-info {
    font-size: 14px;
    color: #666;
    display: flex;
    gap: 20px;
}

.cta-contact-info i {
    color: #C5A059; /* Gold icons */
    margin-right: 5px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles for CTA */
.btn-blue {
    background-color: #003366;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #003366;
    color: #003366;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #003366;
    color: #fff;
}

.btn-dark-gold {
    background-color: #b08d45; /* Darker Gold/Brown per image */
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .integrity-content {
        flex-direction: column;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- ICAN PAGE STYLES --- */

/* Intro Text */
.ican-intro-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.ican-intro-box {
    max-width: 900px;
    margin: 0 auto;
}

.ican-intro-box h2 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 30px;
}

.ican-intro-box p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- TABS SECTION --- */
.ican-tabs-section {
    padding: 60px 0 100px 0;
    background-color: #f9fcff;
}

.ican-tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: #003366;
    color: #003366;
}

.tab-btn.active {
    background-color: #003366;
    color: #fff;
    border-color: #003366;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}

/* Tab Content */
.tab-content {
    display: none; /* Hidden by default */
    animation: fadeTab 0.5s ease-in-out;
}

.tab-content.active-content {
    display: block; /* Shown via JS */
}

@keyframes fadeTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* The Card inside the tab */
.tab-card {
    background: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 5px solid #C5A059; /* Gold Top Border */
}

.tab-card h3 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 15px;
}

.tab-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.tab-card .gold-check-list {
    text-align: left;
    display: inline-block; /* Centers the list block */
    margin: 0 auto;
}

/* --- IMPORTANT INFO BOX --- */
.ican-important-section {
    padding-bottom: 60px;
    background-color: #f9fcff; /* Matches tabs bg */
}

.important-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff8e1; /* Light Gold BG */
    border: 1px solid #f0e0c0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.important-box h4 {
    color: #b08d45; /* Darker Gold */
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.important-box p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* --- FAQ SECTION --- */
/* --- ACCORDION STYLES --- */
.accordion-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    color: #003366;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background-color: #f9fcff;
}

.accordion-header .icon {
    font-size: 14px;
    color: #C5A059; /* Gold Icon */
    transition: transform 0.3s;
}

/* Rotate icon when active */
.accordion-header.active .icon {
    transform: rotate(45deg); /* Turns plus into X */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.accordion-content p {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}
/* Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .ican-tabs-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* --- ICAN INTRO STYLING --- */
.ican-intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.ican-intro-box {
    max-width: 900px; /* Limits width so lines aren't too long to read */
    margin: 0 auto;
    text-align: center;
}

.ican-intro-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.8; /* Improves readability for long text */
    margin-bottom: 25px;
    text-align: left; /* Keeps large blocks of text left-aligned for easier reading */
}

/* Center the header inside the box */
.ican-intro-box .section-header {
    margin-bottom: 40px;
    text-align: center;
}