* {
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        body {
            background: #fff;
            color: #0f172a
        }

        /* ─── NAV ─── */
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 6%;
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            z-index: 100
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .nav-logo img {
            height: 36px
        }

        .nav-logo-text {
            font-size: 20px;
            font-weight: 800;
            color: #0a71b4;
            letter-spacing: -0.5px
        }

        .nav-logo-sub {
            font-size: 10px;
            color: #64748b;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: -2px
        }

        .nav-badge {
            background: #0a71b4;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 7px 18px;
            border-radius: 8px;
            text-decoration: none;
            letter-spacing: 0.3px
        }

        /* ─── HERO ─── */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 127px 6%;
            gap: 60px;
            background: #fff
        }

        .hero-left {
            max-width: 580px
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #eff6ff;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0a71b4;
            margin-bottom: 22px;
            border: 1px solid #bfdbfe
        }

        .hero-tag-dot {
            width: 7px;
            height: 7px;
            background: #0a71b4;
            border-radius: 50%;
            animation: blink 2s infinite
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.3
            }
        }

        .hero h1 {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.12;
            color: #0f172a;
            letter-spacing: -1px
        }

        .hero h1 span {
            color: #0a71b4
        }

        .hero-desc {
            margin-top: 18px;
            font-size: 15px;
            color: #475569;
            line-height: 1.75
        }

        .hero-desc strong {
            color: #0f172a
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 30px
        }

        .btn-primary {
            background: #0a71b4;
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            letter-spacing: 0.3px;
            transition: background 0.2s
        }

        .btn-primary:hover {
            background: #0860a0
        }

        .btn-secondary {
            font-size: 14px;
            font-weight: 600;
            color: #0a71b4;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px
        }

        .hero-right {
            flex-shrink: 0;
            width: 460px
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            overflow: hidden
        }

        .stat-box {
            padding: 34px 20px;
            text-align: center;
            border-right: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            background: #fff
        }

        .stat-box:nth-child(2),
        .stat-box:nth-child(4) {
            border-right: none
        }

        .stat-box:nth-child(3),
        .stat-box:nth-child(4) {
            border-bottom: none
        }

        .stat-num {
            font-size: 36px;
            font-weight: 800;
            color: #0a71b4;
            line-height: 1
        }

        .stat-label {
            font-size: 11px;
            letter-spacing: 1.5px;
            color: #94a3b8;
            text-transform: uppercase;
            margin-top: 6px
        }

        /* ─── TRUSTED LOGOS STRIP ─── */
        .trust-strip {
            padding: 28px 6%;
            background: #f8fafc;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            gap: 32px;
            overflow: hidden
        }

        .trust-label {
            font-size: 11px;
            font-weight: 700;
            color: #94a3b8;
            letter-spacing: 2px;
            text-transform: uppercase;
            white-space: nowrap;
            flex-shrink: 0
        }

        .trust-logos {
            display: flex;
            gap: 28px;
            align-items: center;
            overflow-x: auto;
            scrollbar-width: none
        }

        .trust-logos::-webkit-scrollbar {
            display: none
        }

        .trust-logos span {
            font-size: 13px;
            font-weight: 700;
            color: #64748b;
            white-space: nowrap;
            padding: 6px 14px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background: #fff
        }

        /* ─── SECTION HEADER ─── */
        .sec-header {
            text-align: center;
            margin-bottom: 48px
        }

        .sec-tag {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            color: #0a71b4;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block
        }

        .sec-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.2;
            letter-spacing: -0.5px
        }

        .sec-header h2 span {
            color: #0a71b4
        }

        .sec-header p {
            font-size: 15px;
            color: #64748b;
            max-width: 560px;
            margin: 12px auto 0;
            line-height: 1.7
        }

        /* ─── BENEFITS ─── */
        .benefits-section {
            padding: 80px 6%;
            background: #0f172a
        }

        .benefits-section .sec-header h2 {
            color: #fff
        }

        .benefits-section .sec-header p {
            color: #94a3b8
        }

        .benefits-section .sec-tag {
            color: #60a5fa
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 28px 24px;
            transition: border-color 0.2s, transform 0.2s
        }

        .benefit-card:hover {
            border-color: rgba(10, 113, 180, 0.5);
            transform: translateY(-4px)
        }

        .benefit-icon {
            font-size: 30px;
            margin-bottom: 16px;
            display: block
        }

        .benefit-card h3 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px
        }

        .benefit-card p {
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.65
        }

        /* ─── WHY SECTION ─── */
        .why-section {
            padding: 80px 13%;
            background: #fff
        }

        .why-container {
            display: flex;
            gap: 60px;
            align-items: center
        }

        .why-left {
            max-width: 560px
        }

        .why-tag {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            color: #0a71b4;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: block
        }

        .why-left h2 {
            font-size: 34px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 28px;
            letter-spacing: -0.5px
        }

        .why-left h2 span {
            color: #0a71b4;
            font-style: italic
        }

        .why-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            align-items: flex-start
        }

        .why-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: #eff6ff;
            border: 1px solid #bfdbfe;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0
        }

        .why-text {
            font-size: 14px;
            color: #475569;
            line-height: 1.65
        }

        .why-text strong {
            color: #0f172a
        }

        /* ─── CURRICULUM ─── */
        .curriculum-section {
            padding: 80px 6%;
            background: #f8fafc
        }

        .curriculum-box {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #e5e7eb;
            display: flex;
            gap: 0;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06)
        }

        .mod-sidebar {
            width: 280px;
            border-right: 1px solid #e5e7eb;
            flex-shrink: 0;
            padding: 20px 0
        }

        .mod-item {
            padding: 13px 20px;
            font-size: 13px;
            color: #475569;
            cursor: pointer;
            border-left: 3px solid transparent;
            transition: all 0.15s;
            font-weight: 500
        }

        .mod-item:hover {
            background: #f8fafc;
            color: #0a71b4
        }

        .mod-item.active {
            background: #eff6ff;
            color: #0a71b4;
            font-weight: 700;
            border-left-color: #0a71b4
        }

        .mod-body {
            flex: 1;
            padding: 32px 36px;
            min-width: 0
        }

        .mod-data {
            display: none
        }

        .mod-data.show {
            display: block
        }

        .mod-title {
            font-size: 19px;
            font-weight: 800;
            color: #0a71b4;
            margin-bottom: 4px
        }

        .mod-sub {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 22px;
            padding-bottom: 16px;
            border-bottom: 1px solid #f1f5f9
        }

        .topic-box {
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 16px 18px;
            margin-bottom: 16px
        }

        .topic-box-label {
            font-size: 12px;
            font-weight: 700;
            color: #334155;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px
        }

        .topic-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px
        }

        .t-item {
            font-size: 12.5px;
            color: #475569;
            display: flex;
            align-items: flex-start;
            gap: 6px;
            line-height: 1.5
        }

        .t-item::before {
            content: "✔";
            color: #0a71b4;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px
        }

        .genai-box {
            background: linear-gradient(135deg, #eff6ff, #f0f9ff);
            border: 1.5px solid #0a71b4;
            border-radius: 10px;
            padding: 16px 18px;
            margin-top: 16px
        }

        .genai-box-label {
            font-size: 12px;
            font-weight: 700;
            color: #0a71b4;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px
        }

        .genai-new {
            background: #0a71b4;
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 8px;
            letter-spacing: 0.5px
        }

        .genai-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px
        }

        .g-item {
            font-size: 12.5px;
            color: #1e40af;
            display: flex;
            align-items: flex-start;
            gap: 6px;
            line-height: 1.5
        }

        .g-item::before {
            content: "✦";
            color: #0a71b4;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px
        }

        .tool-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(10, 113, 180, 0.15)
        }

        .tool-pill {
            font-size: 11px;
            background: #fff;
            color: #0a71b4;
            padding: 3px 10px;
            border-radius: 20px;
            border: 1px solid #bfdbfe;
            font-weight: 600
        }

        .tool-pills-label {
            font-size: 10px;
            font-weight: 700;
            color: #0a71b4;
            letter-spacing: 1px;
            text-transform: uppercase;
            align-self: center
        }

        /* ─── PROJECTS ─── */
        .projects-section {
            padding: 80px 6%;
            background: #fff;
            text-align: center
        }

        .proj-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .proj-card {
            border: 1.5px solid #e5e7eb;
            border-radius: 16px;
            padding: 28px;
            text-align: left;
            transition: all 0.25s
        }

        .proj-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            border-color: #bfdbfe
        }

        .proj-thumb {
            height: 148px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            position: relative;
            margin-bottom: 16px
        }

        .proj-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.65);
            color: #fff;
            font-size: 10px;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600
        }

        .proj-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #0f172a
        }

        .proj-card p {
            font-size: 13px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 14px
        }

        .proj-tech span {
            display: inline-block;
            background: #eff6ff;
            color: #0a71b4;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11.5px;
            margin: 0 4px 4px 0;
            font-weight: 600;
            border: 1px solid #bfdbfe
        }

        .bg-sec1 {
            background: linear-gradient(135deg, #1c0a0a, #7f1d1d)
        }

        .bg-sec2 {
            background: linear-gradient(135deg, #0c1a3a, #1e40af)
        }

        .bg-sec3 {
            background: linear-gradient(135deg, #0a1f0a, #166534)
        }

        /* ─── AI TOOLS SLIDER ─── */
        .tools-section {
            padding: 72px 0;
            background: #0f172a;
            overflow: hidden
        }

        .tools-inner {
            padding: 0 6%;
            text-align: center;
            margin-bottom: 52px
        }

        .tools-inner .sec-tag {
            color: #60a5fa
        }

        .tools-inner h2 {
            color: #fff;
            font-size: 30px;
            font-weight: 800;
            margin-top: 8px;
            letter-spacing: -0.5px
        }

        .tools-inner h2 span {
            color: #0a71b4
        }

        .tools-inner p {
            font-size: 14px;
            color: #475569;
            max-width: 480px;
            margin: 10px auto 0;
            line-height: 1.7
        }

        .slider-wrap {
            position: relative;
            overflow: hidden
        }

        .slider-wrap::before,
        .slider-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none
        }

        .slider-wrap::before {
            left: 0;
            background: linear-gradient(to right, #0f172a, transparent)
        }

        .slider-wrap::after {
            right: 0;
            background: linear-gradient(to left, #0f172a, transparent)
        }

        .slider-track {
            display: flex;
            gap: 14px;
            width: max-content;
            animation: scrollL 32s linear infinite;
            padding: 4px 0
        }

        .slider-track.rev {
            animation: scrollR 28s linear infinite
        }

        .slider-track:hover,
        .slider-track.rev:hover {
            animation-play-state: paused
        }

        @keyframes scrollL {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        @keyframes scrollR {
            0% {
                transform: translateX(-50%)
            }

            100% {
                transform: translateX(0)
            }
        }

        .chip {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 18px 22px;
            min-width: 116px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            transition: all 0.2s;
            cursor: default
        }

        .chip:hover {
            border-color: rgba(10, 113, 180, 0.5);
            background: rgba(10, 113, 180, 0.08);
            transform: translateY(-3px)
        }

        .chip svg {
            width: 42px;
            height: 42px;
            display: block
        }

        .chip span {
            font-size: 10.5px;
            font-weight: 600;
            color: #475569;
            text-align: center;
            white-space: nowrap;
            letter-spacing: 0.3px
        }

        .tools-stats {
            display: flex;
            justify-content: center;
            gap: 0;
            margin: 44px 6% 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            overflow: hidden
        }

        .ts-item {
            flex: 1;
            text-align: center;
            padding: 22px 16px;
            border-right: 1px solid rgba(255, 255, 255, 0.08)
        }

        .ts-item:last-child {
            border-right: none
        }

        .ts-num {
            font-size: 28px;
            font-weight: 800;
            color: #0a71b4;
            display: block
        }

        .ts-label {
            font-size: 10px;
            color: #475569;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 4px
        }

        /* ─── JOBS SECTION ─── */
        .jobs-section {
            padding: 80px 6%;
            background: #fff
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .job-card {
            border: 1.5px solid #e5e7eb;
            border-radius: 16px;
            padding: 26px;
            position: relative;
            overflow: hidden;
            transition: all 0.25s;
            background: #fff
        }

        .job-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--jc);
            border-radius: 16px 16px 0 0
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--jborder)
        }

        .job-emoji {
            font-size: 30px;
            display: block;
            margin-bottom: 14px
        }

        .job-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 4px
        }

        .job-card .salary {
            font-size: 14px;
            font-weight: 700;
            color: var(--jc);
            margin-bottom: 10px
        }

        .job-card p {
            font-size: 12.5px;
            color: #64748b;
            line-height: 1.65;
            margin-bottom: 14px
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 14px
        }

        .job-tags span {
            font-size: 10.5px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 20px;
            background: var(--jbg);
            color: var(--jc);
            border: 1px solid var(--jborder)
        }

        .demand-row {
            display: flex;
            align-items: center;
            gap: 8px
        }

        .demand-row .dlabel {
            font-size: 10.5px;
            color: #94a3b8;
            flex-shrink: 0
        }

        .dbar {
            flex: 1;
            height: 4px;
            background: #f1f5f9;
            border-radius: 10px;
            overflow: hidden
        }

        .dfill {
            height: 100%;
            border-radius: 10px;
            background: var(--jc)
        }

        .demand-row .dtxt {
            font-size: 10.5px;
            font-weight: 700;
            color: var(--jc);
            white-space: nowrap
        }

        .hiring-banner {
            margin-top: 44px;
            background: #0f172a;
            border-radius: 16px;
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap
        }

        .hb-left-title {
            font-size: 12px;
            font-weight: 700;
            color: #60a5fa;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px
        }

        .hb-companies {
            display: flex;
            flex-wrap: wrap;
            gap: 8px
        }

        .hb-co {
            background: rgba(255, 255, 255, 0.07);
            color: #e2e8f0;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12.5px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1)
        }

        .hb-stats {
            display: flex;
            gap: 28px;
            flex-shrink: 0
        }

        .hb-stat {
            text-align: center
        }

        .hb-num {
            font-size: 30px;
            font-weight: 800;
            color: #0a71b4;
            display: block
        }

        .hb-slabel {
            font-size: 10px;
            color: #475569;
            letter-spacing: 1px;
            margin-top: 4px
        }

        .hb-div {
            width: 1px;
            background: rgba(255, 255, 255, 0.08);
            align-self: stretch
        }

        /* ─── CTA ─── */
        .cta-section {
            padding: 72px 6%;
            background: #f8fafc
        }

        .cta-box {
            background: linear-gradient(135deg, #020617 0%, #0a3575 50%, #0a71b4 100%);
            border-radius: 20px;
            padding: 56px 60px;
            display: flex;
            gap: 52px;
            align-items: center;
            color: #fff
        }

        .cta-left {
            flex: 1
        }

        .cta-left h2 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px
        }

        .cta-left h2 span {
            font-style: italic;
            color: #93c5fd
        }

        .cta-left p {
            margin: 14px 0 22px;
            color: #93c5fd;
            font-size: 15px;
            line-height: 1.6
        }

        .cta-btn {
            background: #fff;
            color: #0a71b4;
            border: none;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            font-size: 14px;
            letter-spacing: 0.3px
        }

        .cta-left small {
            display: block;
            margin-top: 10px;
            color: #fbbf24;
            font-size: 12.5px
        }

        .cta-right {
            flex: 1
        }

        .cta-right ul {
            list-style: none;
            padding: 0
        }

        .cta-right li {
            margin-bottom: 14px;
            font-size: 14px;
            color: #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .cta-right li::before {
            content: "✔";
            color: #60a5fa;
            font-weight: 700;
            flex-shrink: 0
        }

        /* ─── RESPONSIVE ─── */
        @media(max-width:1100px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:900px) {

            .hero,
            .why-container,
            .cta-box {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            .why-section {
            padding: 80px 6%;
            background: #fff
        }

            .hero-right,
            .why-right {
                width: 100%;
                max-width: 100%
            }

            .benefits-grid,
            .proj-grid,
            .jobs-grid {
                grid-template-columns: 1fr
            }

            .curriculum-box {
                flex-direction: column
            }

            .mod-sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
                display: flex;
                overflow-x: auto;
                padding: 12px;
                gap: 6px
            }

            .mod-item {
                border-left: none;
                border-bottom: 3px solid transparent;
                white-space: nowrap;
                min-width: fit-content;
                padding: 10px 14px
            }

            .mod-item.active {
                border-left: none;
                border-bottom-color: #0a71b4
            }

            .topic-grid,
            .genai-grid {
                grid-template-columns: 1fr
            }

            .jobs-grid {
                grid-template-columns: 1fr 1fr
            }

            .hb-stats {
                width: 100%;
                justify-content: center
            }
        }

        @media(max-width:580px) {
            .jobs-grid {
                grid-template-columns: 1fr
            }
        }

        .faq-section {
    padding: 90px 7%;
    background: #f8fbff;
}

.faq-container {
    max-width: 950px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e4edf8;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #0f172a;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #0a71b4;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.faq-answer p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    background: #061236;
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}