        :root {
            --primary:      #1a2bc3;
            --primary-dark: #1625a5;
            --text:         #1a1a2e;
            --light-grey:   #f4f5fb;
            --secondary:    #ffffff;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Roboto', sans-serif;
            background: #fff;
            color: var(--text);
        }

        #fdcon-hero-section {
            width: 100%;
            background: var(--light-grey);
            display: grid;
            margin-top: 80px;
        }

        #fdcon-hero-container {
            display: flex;
            flex-direction: column;
            max-width: 1100px;
            place-self: center;
            gap: 24px;
            padding: 32px 20px;
        }

        .fdcon-hero-text { flex: 1; }

        .fdcon-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(26, 43, 195, 0.08);
            border: 1px solid rgba(26, 43, 195, 0.2);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 0.5px;
            width: fit-content;
            margin-bottom: 16px;
        }

        .fdcon-hero-badge .material-symbols-outlined { font-size: 15px; font-variation-settings: 'FILL' 1; }

        .fdcon-hero-heading {
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 28px;
            margin-bottom: 14px;
            line-height: 1.2;
        }

        .fdcon-hero-sub {
            color: #707070;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .fdcon-hero-stats { display: flex; justify-content: space-between; gap: 16px; }
        .fdcon-stat-item  { text-align: center; flex: 1; }

        .fdcon-stat-number {
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .fdcon-stat-label {
            color: #707070;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            font-size: 12px;
            line-height: 1.3;
        }

        .fdcon-hero-visual {
            flex: 1;
            height: 320px;
            border-radius: 30px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(26,43,195,0.06) 0%, rgba(26,43,195,0.12) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fdcon-hero-visual-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            padding: 28px;
            width: 100%;
        }

        .fdcon-mini-card {
            background: #fff;
            border-radius: 16px;
            padding: 16px 10px;
            box-shadow: 0 4px 14px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
            animation: floatCard 3s ease-in-out infinite;
        }

        .fdcon-mini-card:nth-child(2) { animation-delay: 0.4s; }
        .fdcon-mini-card:nth-child(3) { animation-delay: 0.8s; }
        .fdcon-mini-card:nth-child(4) { animation-delay: 1.2s; }
        .fdcon-mini-card:nth-child(5) { animation-delay: 0.6s; }
        .fdcon-mini-card:nth-child(6) { animation-delay: 1.0s; }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50%       { transform: translateY(-5px); }
        }

        .fdcon-mini-card .material-symbols-outlined {
            font-size: 26px;
            color: var(--primary);
            font-variation-settings: 'FILL' 1;
        }

        .fdcon-mini-label {
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 11px;
            line-height: 1.3;
        }


        .fdcon-section-a { width: 100%; background: var(--secondary); display: grid; }
        .fdcon-section-b { width: 100%; background: var(--light-grey); display: grid; }
        .fdcon-section-c { width: 100%; background: var(--secondary); display: grid; }

        .fdcon-container {
            display: flex;
            flex-direction: column;
            max-width: 1100px;
            place-self: center;
            gap: 24px;
            padding: 32px 20px;
        }

        .fdcon-section-heading {
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 22px;
            text-align: center;
            margin-bottom: 8px;
        }

        .fdcon-section-sub {
            color: #707070;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            font-size: 14px;
            text-align: center;
            line-height: 1.6;
        }


        .fdcon-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .fdcon-card {
            background: #fff;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .fdcon-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .fdcon-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .fdcon-card-icon {
            width: 44px;
            height: 44px;
            background: var(--light-grey);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fdcon-card-icon .material-symbols-outlined {
            color: var(--primary);
            font-size: 22px;
            font-variation-settings: 'FILL' 1;
        }

        .fdcon-card-icon svg { width: 22px; height: 22px; }

        .fdcon-card-badge {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: rgba(26, 43, 195, 0.08);
            padding: 4px 12px;
            border-radius: 50px;
        }

        .fdcon-card-title {
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 6px;
        }

        .fdcon-card-desc {
            color: #707070;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .fdcon-card-value {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--light-grey);
            border-radius: 10px;
            padding: 10px 14px;
            margin-bottom: 14px;
        }

        .fdcon-card-value .material-symbols-outlined {
            font-size: 17px;
            color: var(--primary);
            font-variation-settings: 'FILL' 1;
            flex-shrink: 0;
        }

        .fdcon-card-value span:last-child {
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: var(--text);
            word-break: break-all;
        }

        .fdcon-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            transition: gap 0.25s ease, color 0.25s ease;
        }

        .fdcon-card-link .material-symbols-outlined {
            font-size: 16px;
            transition: transform 0.25s ease;
        }

        .fdcon-card-link:hover { color: var(--primary-dark); gap: 10px; }
        .fdcon-card-link:hover .material-symbols-outlined { transform: translateX(3px); }

        .fdcon-location-wrap {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .fdcon-address-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .fdcon-address-panel > div > h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: var(--text);
            margin-bottom: 8px;
        }

        .fdcon-address-panel > div > p {
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            color: #707070;
            line-height: 1.7;
        }

        .fdcon-address-detail {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: #fff;
            border-radius: 16px;
            padding: 16px 18px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .fdcon-address-detail:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.11);
        }

        .fdcon-address-detail-icon {
            width: 42px;
            height: 42px;
            background: var(--light-grey);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fdcon-address-detail-icon .material-symbols-outlined {
            font-size: 20px;
            color: var(--primary);
            font-variation-settings: 'FILL' 1;
        }

        .fdcon-address-detail-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .fdcon-address-detail-label {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--primary);
        }

        .fdcon-address-detail-value {
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            color: var(--text);
            line-height: 1.6;
        }

        .fdcon-directions-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 24px;
            background: var(--primary);
            color: #fff;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            width: fit-content;
        }

        .fdcon-directions-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26,43,195,0.28);
        }

        .fdcon-directions-btn .material-symbols-outlined { font-size: 18px; }

        .fdcon-map-wrap {
            flex: 1.4;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0,0,0,0.11);
            min-height: 340px;
        }

        .fdcon-map-wrap iframe {
            width: 100%;
            height: 100%;
            min-height: 340px;
            border: none;
            display: block;
        }

        .fdcon-faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .fdcon-faq-item {
            background: #fff;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .fdcon-faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.11); }

        .fdcon-faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 20px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: var(--text);
            transition: color 0.25s ease;
        }

        .fdcon-faq-q:hover { color: var(--primary); }

        .fdcon-faq-icon {
            font-size: 20px;
            color: var(--primary);
            font-variation-settings: 'FILL' 1;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .fdcon-faq-item.open .fdcon-faq-icon { transform: rotate(45deg); }

        .fdcon-faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
        }

        .fdcon-faq-item.open .fdcon-faq-a {
            max-height: 400px;
            padding: 0 20px 18px;
        }

        .fdcon-faq-a p, .fdcon-faq-a ol, .fdcon-faq-a ul {
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            color: #707070;
            line-height: 1.7;
        }

        .fdcon-faq-a ol, .fdcon-faq-a ul { padding-left: 18px; }
        .fdcon-faq-a li { margin-bottom: 4px; }

        .fdcon-community-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .fdcon-community-card {
            background: #fff;
            border-radius: 16px;
            padding: 18px 16px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }

        .fdcon-community-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .fdcon-community-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fdcon-community-icon svg { width: 22px; height: 22px; }
        .fdcon-community-icon .material-symbols-outlined { font-size: 22px; font-variation-settings: 'FILL' 1; }

        .fdcon-community-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 13px;
            color: var(--text);
            margin-bottom: 2px;
        }

        .fdcon-community-handle {
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
            color: #707070;
        }

        .fdcon-community-join {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 11px;
            color: var(--primary);
            margin-top: 2px;
        }

        .fdcon-community-join .material-symbols-outlined { font-size: 13px; }

        #fdcon-cta-section { width: 100%; display: grid; }

        #fdcon-cta-container {
            display: flex;
            flex-direction: column;
            max-width: 1100px;
            place-self: center;
            gap: 24px;
            padding: 32px 20px;
            text-align: center;
        }

        .fdcon-cta-heading {
            color: #000;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .fdcon-cta-desc {
            color: #707070;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 1.6;
        }

        .fdcon-cta-buttons { display: flex; flex-direction: column; gap: 12px; }

        @media (min-width: 768px) {
            #fdcon-hero-container  { padding: 44px; gap: 32px; }
            .fdcon-hero-heading    { font-size: 36px; margin-bottom: 18px; }
            .fdcon-hero-sub        { font-size: 16px; }
            .fdcon-stat-number     { font-size: 18px; }
            .fdcon-stat-label      { font-size: 14px; }

            .fdcon-container       { padding: 44px; gap: 32px; }
            .fdcon-section-heading { font-size: 28px; }
            .fdcon-section-sub     { font-size: 15px; }

            .fdcon-grid            { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .fdcon-community-grid  { grid-template-columns: repeat(4, 1fr); }

            .fdcon-cta-buttons     { flex-direction: row; justify-content: center; }
            #fdcon-cta-container   { padding: 60px 44px; }
            .fdcon-cta-heading     { font-size: 28px; }
            .fdcon-cta-desc        { font-size: 16px; }
        }

        @media (min-width: 1024px) {
            #fdcon-hero-container {
                flex-direction: row;
                align-items: center;
                padding: 100px 0;
                gap: 60px;
            }

            .fdcon-hero-heading    { font-size: 48px; margin-bottom: 22px; }
            .fdcon-hero-sub        { font-size: 18px; margin-bottom: 36px; }
            .fdcon-hero-stats      { justify-content: flex-start; gap: 40px; }
            .fdcon-stat-item       { text-align: left; flex: none; }
            .fdcon-stat-number     { font-size: 20px; }
            .fdcon-stat-label      { font-size: 16px; }
            .fdcon-hero-visual     { height: 420px; }

            .fdcon-container       { padding: 80px 0; gap: 40px; }
            .fdcon-section-heading { font-size: 32px; margin-bottom: 12px; }
            .fdcon-section-sub     { font-size: 16px; }

            .fdcon-grid            { grid-template-columns: repeat(3, 1fr); gap: 28px; }
            .fdcon-card            { padding: 28px; }
            .fdcon-card-icon       { width: 52px; height: 52px; }
            .fdcon-card-icon .material-symbols-outlined { font-size: 26px; }
            .fdcon-card-title      { font-size: 18px; }
            .fdcon-card-desc       { font-size: 14px; }
            .fdcon-card-link       { font-size: 14px; }

            .fdcon-location-wrap   { flex-direction: row; gap: 48px; align-items: stretch; }
            .fdcon-map-wrap        { min-height: 440px; }

            .fdcon-faq-q           { font-size: 15px; padding: 20px 24px; }
            .fdcon-faq-item.open .fdcon-faq-a { padding: 0 24px 22px; }
            .fdcon-faq-a p, .fdcon-faq-a ol   { font-size: 14px; }

            .fdcon-community-grid  { grid-template-columns: repeat(4, 1fr); gap: 20px; }

            #fdcon-cta-container   { padding: 80px 0; gap: 32px; }
            .fdcon-cta-heading     { font-size: 36px; }
            .fdcon-cta-desc        { font-size: 18px; max-width: 680px; margin: 0 auto; }
            .fdcon-cta-buttons     { gap: 20px; }
        }

        @media (min-width: 1400px) {
            #fdcon-hero-container,
            .fdcon-container,
            #fdcon-cta-container   { max-width: 1200px; }
            .fdcon-hero-heading    { font-size: 56px; }
            .fdcon-section-heading { font-size: 36px; }
        }

        @media print { .fdcon-cta-buttons { display: none; } }
