@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;600;800&family=Dancing+Script&display=swap');

.dd-hero-promo {
    font-family: 'Inter', sans-serif;
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.dd-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Typography */
.dd-main-title {
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    margin: 0;
    color: #000;
}

.dd-sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #d970b6; /* Pink color from image */
    margin: -10px 0 20px 0;
}

.dd-description {
    color: #666;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* App Buttons */
.dd-app-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.dd-app-btn img {
    height: 45px;
    transition: transform 0.2s;
}

.dd-app-btn:hover img {
    transform: translateY(-3px);
}

/* Grid Layout */
.dd-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr;
    gap: 20px;
    align-items: end;
}

/* Base Card Styling */
.dd-card {
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: left;
    height: 400px;
    display: flex;
    flex-direction: column;
}

/* Purple Card */
.dd-card-purple { background-color: #a05cdd; }
.dd-tagline-script { font-family: 'Dancing Script', cursive; font-size: 24px; }
.dd-card-purple h3 { font-size: 28px; margin: 10px 0; line-height: 1.1; }

/* Blue Card */
.dd-card-blue { 
    background-color: #9bb6dc; 
    height: 250px; 
    align-self: end;
    margin-bottom: 20px;
}
.dd-badge-ribbon {
    position: absolute;
    top: 20px; right: -30px;
    background: #d970b6;
    padding: 5px 40px;
    transform: rotate(15deg);
    font-size: 12px;
    font-weight: 800;
}

/* Red Card */
.dd-card-red { background-color: #e36d6d; height: 420px; }
.dd-signal-icon { position: absolute; top: 20px; right: 20px; opacity: 0.8; }
.dd-status-text { letter-spacing: 2px; font-weight: 600; font-size: 14px; }
.dd-card-footer {
    background: white;
    color: #000;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    margin-top: auto;
}

/* Images */
.dd-card img { width: 100%; object-fit: contain; }

/* Responsive */
@media (max-width: 992px) {
    .dd-grid { grid-template-columns: 1fr; }
    .dd-card { height: auto; min-height: 300px; }
    .dd-main-title { font-size: 42px; }
    .dd-sub-title { font-size: 36px; }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

.ic-mission-section {
    font-family: 'Montserrat', sans-serif;
    background-color: #f1f6fb; /* Very light blue background */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.ic-mission-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2px 1.5fr; /* 3-column grid for layout */
    gap: 60px;
    align-items: center;
}

/* Left Content */
.ic-mission-main-title {
    font-size: 84px;
    font-weight: 700;
    line-height: 0.9;
    color: #2b4c8c; /* Dark blue */
    letter-spacing: 2px;
    margin: 0 0 40px 0;
}

.ic-mission-learn-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #2b4c8c;
    border-radius: 50px;
    text-decoration: none;
    color: #2b4c8c;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ic-mission-learn-btn:hover {
    background-color: #2b4c8c;
    color: #ffffff;
}

/* Divider & Progress Bar */
.ic-mission-divider {
    height: 80%;
    background-color: #cddbec; /* Faint line */
    position: relative;
    border-radius: 2px;
}

.ic-mission-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 33.33%; /* Represents one section */
    background-color: #2b4c8c; /* Darker line segment */
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Right Content Items */
.ic-mission-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ic-mission-item {
    opacity: 0.4;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.ic-mission-item.active {
    opacity: 1;
}

.ic-mission-item-title {
    font-size: 24px;
    color: #2b4c8c;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.ic-mission-item-text {
    font-size: 16px;
    color: #5c7ba3;
    line-height: 1.6;
    max-width: 450px;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .ic-mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ic-mission-divider {
        display: none;
    }
    .ic-mission-main-title {
        font-size: 56px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.ic-srv-section {
    font-family: 'Inter', sans-serif;
    padding: 100px 20px;
    background-color: #ffffff;
    color: #1a1a1a;
}

.ic-srv-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.ic-srv-header {
    margin-bottom: 60px;
}

.ic-srv-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ic-srv-slash {
    font-weight: 900;
    color: #333;
}

.ic-srv-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #666;
}

.ic-srv-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

/* Grid & Cards */
.ic-srv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ic-srv-card {
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ic-srv-yellow { background-color: #FEF3E2; }
.ic-srv-purple { background-color: #E8E9FF; }

.ic-srv-card-content {
    max-width: 250px;
    z-index: 2;
}

.ic-srv-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.ic-srv-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ic-srv-link {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.ic-srv-link:hover {
    opacity: 0.7;
}

/* Image Placeholder Styling */
.ic-srv-image-placeholder {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 70%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.ic-srv-img-box {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05); /* Just to visualize the area */
    border-radius: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 992px) {
    .ic-srv-grid { grid-template-columns: 1fr; }
    .ic-srv-title { font-size: 32px; }
}

@media (max-width: 600px) {
    .ic-srv-card { padding: 30px; min-height: 450px; }
    .ic-srv-card-content { max-width: 100%; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.ic-hist-section {
    font-family: 'Inter', sans-serif;
    padding: 100px 20px;
    background-color: #f9f9fb; /* Very light grey background */
    color: #1a1a1a;
}

.ic-hist-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styling */
.ic-hist-header {
    margin-bottom: 50px;
}

.ic-hist-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ic-hist-slash {
    font-weight: 900;
    font-size: 18px;
}

.ic-hist-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #666;
}

.ic-hist-title {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Main Card Styling */
.ic-hist-card {
    background-color: #B6F1FF; /* Light cyan from image */
    border-radius: 35px;
    min-height: 450px;
    position: relative;
    padding: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ic-hist-content-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* Graphic Area */
.ic-hist-graphic-area {
    flex: 1.5;
    height: 100%;
}

.ic-hist-placeholder-img {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic-hist-img-label {
    color: #2e8da3;
    font-weight: 600;
    font-size: 14px;
}

/* Info Box Styling */
.ic-hist-info-box {
    flex: 1;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    max-width: 320px;
    z-index: 2;
}

.ic-hist-info-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 25px 0;
    color: #1a1a1a;
}

.ic-hist-link {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.ic-hist-link:hover {
    color: #000;
}

.ic-hist-arrow {
    font-size: 18px;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .ic-hist-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .ic-hist-info-box {
        max-width: 100%;
        text-align: center;
    }
    .ic-hist-title {
        font-size: 28px;
    }
    .ic-hist-card {
        padding: 40px 20px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.ic-cta-section {
    font-family: 'Inter', sans-serif;
    padding: 120px 20px;
    /* Soft grayish-blue radial gradient */
    background: radial-gradient(circle at 10% 50%, #f4f5f9 0%, #ffffff 100%);
    overflow: hidden;
}

.ic-cta-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Content Styling */
.ic-cta-content {
    flex: 1;
}

.ic-cta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.ic-cta-slash {
    font-weight: 900;
    font-size: 20px;
    color: #1a1a1a;
}

.ic-cta-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #888;
}

.ic-cta-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
}

/* Button Styling */
.ic-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.ic-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #ccc;
}

.ic-cta-btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    padding: 4px;
}

/* Visual Column */
.ic-cta-visual {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.ic-cta-illustration-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic-cta-img-bg-blob {
    position: absolute;
    width: 80%;
    height: 80%;
    background: rgba(182, 241, 255, 0.2); /* Light cyan tint */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    filter: blur(40px);
    z-index: 1;
}

.ic-cta-placeholder-text {
    z-index: 2;
    font-size: 14px;
    color: #aaa;
    border: 2px dashed #eee;
    padding: 20px 40px;
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .ic-cta-container {
        flex-direction: column;
        text-align: center;
    }
    .ic-cta-badge { justify-content: center; }
    .ic-cta-visual { justify-content: center; width: 100%; }
    .ic-cta-title { font-size: 36px; }
}

/* Top CTA Buttons (Hero) */
.ic-top-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.ic-top-cta-primary,
.ic-top-cta-secondary,
.ic-top-cta-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.12);
}

.ic-top-cta-primary {
    background: #2b4c8c;
    color: #ffffff;
    border-color: #2b4c8c;
}

.ic-top-cta-secondary {
    background: #ffffff;
    color: #2b4c8c;
}

.ic-top-cta-tertiary {
    background: rgba(43, 76, 140, 0.08);
    color: #2b4c8c;
    border-color: rgba(43, 76, 140, 0.18);
}

.ic-top-cta-primary:hover,
.ic-top-cta-secondary:hover,
.ic-top-cta-tertiary:hover {
    filter: brightness(0.97);
}

/* FAQ Section */
.ic-faq-section {
    font-family: 'Montserrat', sans-serif;
    padding: 90px 20px;
    background: #ffffff;
}

.ic-faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ic-faq-header {
    text-align: center;
    margin-bottom: 36px;
}

.ic-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f1f6fb;
    color: #2b4c8c;
    font-weight: 700;
    border: 1px solid rgba(43, 76, 140, 0.12);
    margin-bottom: 12px;
}

.ic-faq-title {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.15;
    color: #0d1b3e;
}

.ic-faq-subtitle {
    margin: 0;
    color: #5c7ba3;
    line-height: 1.6;
    font-size: 16px;
}

.ic-faq-list {
    display: grid;
    gap: 12px;
}

.ic-faq-item {
    border-radius: 16px;
    border: 1px solid #e8eef6;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
    background: #ffffff;
    overflow: hidden;
}

.ic-faq-q {
    cursor: pointer;
    padding: 18px 18px;
    font-weight: 700;
    color: #2b4c8c;
    list-style: none;
}

.ic-faq-q::-webkit-details-marker { display: none; }

.ic-faq-q::after {
    content: "+";
    float: right;
    color: rgba(43, 76, 140, 0.7);
    font-weight: 800;
}

.ic-faq-item[open] .ic-faq-q::after {
    content: "–";
}

.ic-faq-a {
    padding: 0 18px 18px 18px;
    color: #5c7ba3;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 600px) {
    .ic-faq-title { font-size: 28px; }
    .ic-faq-q { padding: 16px; }
    .ic-faq-a { padding: 0 16px 16px 16px; }
}
