@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F6F4FB;
    color: #1f2937;
}

h1, h2, h3, .site-brand {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(139, 122, 230, 0.14);
    box-shadow: 0 10px 30px rgba(75, 63, 167, 0.08);
}

.site-brand {
    color: #4B3FA7;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav a {
    text-decoration: none;
    color: #4B3FA7;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(139, 122, 230, 0.16);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: linear-gradient(90deg, #6e5bd8 0%, #8e72e7 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(110, 91, 216, 0.2);
}

.entry-title,
.page-title {
    display: none;
}

.main-container {
    width: 100%;
    max-width: 1450px;
    margin: auto;
    padding: 0 0 100px;
}

.page-header {
    position: relative;
    overflow: hidden;
    min-height: min(74vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 32px;
    margin: 0 auto 32px;
    border-radius: 0 0 32px 32px;
    background:
        radial-gradient(circle at 20% 20%, rgba(127, 212, 255, 0.35), transparent 26%),
        radial-gradient(circle at 80% 20%, rgba(139, 122, 230, 0.26), transparent 24%),
        linear-gradient(135deg, #fdfcff 0%, #f4edff 50%, #e9e0ff 100%);
    border-bottom: 1px solid rgba(139, 122, 230, 0.14);
    box-shadow: 0 18px 40px rgba(75, 63, 167, 0.08);
    text-align: center;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-header::before {
    width: 340px;
    height: 340px;
    right: -110px;
    top: -120px;
    background: radial-gradient(circle, rgba(127, 212, 255, 0.30) 0%, rgba(127, 212, 255, 0) 70%);
}

.page-header::after {
    width: 260px;
    height: 260px;
    left: -100px;
    bottom: -130px;
    background: radial-gradient(circle, rgba(124, 106, 232, 0.22) 0%, rgba(124, 106, 232, 0) 72%);
}

.hero-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 6px 0;
}

.hero-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(109, 91, 208, 0.12);
    color: #5b4cc8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-nav a {
    text-decoration: none;
    color: #392d86;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(139, 122, 230, 0.16);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(75, 63, 167, 0.06);
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 34px 24px;
    border: 1px solid rgba(75, 63, 167, 0.1);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(250,247,255,0.96) 100%);
    box-shadow: 0 22px 55px rgba(75, 63, 167, 0.1);
    backdrop-filter: blur(14px);
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(127, 212, 255, 0.25);
    pointer-events: none;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: #5b4cc8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.page-header h1 {
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.02;
    color: #22195f;
    margin-bottom: 12px;
    letter-spacing: -1.2px;
    text-wrap: balance;
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
}

.page-header p {
    font-size: 16px;
    color: #5f5a78;
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

.hero-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f8f2ff 0%, #eef7ff 100%);
    border: 1px solid rgba(139, 122, 230, 0.16);
    color: #4b3fa7;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(75, 63, 167, 0.04);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.hero-visual {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-visual-card {
    text-align: left;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(145deg, #faf7ff 0%, #f2f7ff 100%);
    border: 1px solid rgba(75, 63, 167, 0.1);
    box-shadow: 0 8px 18px rgba(75, 63, 167, 0.04);
}

.hero-visual-card.accent {
    background: linear-gradient(145deg, #f1e9ff 0%, #eef9ff 100%);
}

.hero-visual-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.hero-visual-card strong {
    display: block;
    color: #2f2578;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-visual-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #6b6780;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-action.primary {
    color: #fff;
    background: linear-gradient(90deg, #6e5bd8 0%, #8e72e7 100%);
    box-shadow: 0 14px 28px rgba(110, 91, 216, 0.25);
}

.hero-action.secondary {
    color: #362a86;
    background: #f6f2ff;
    border: 1px solid rgba(139, 122, 230, 0.12);
}

.hero-action:hover {
    transform: translateY(-2px);
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(139, 122, 230, 0.14);
    color: #4b3fa7;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(75, 63, 167, 0.06);
}

.syllabus-page {
    width: 92%;
    max-width: 1260px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.syllabus-intro {
    margin-top: -28px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 22px;
}

.syllabus-intro-card,
.syllabus-highlight,
.module-card,
.project-panel {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(139, 122, 230, 0.14);
    box-shadow: 0 16px 36px rgba(75, 63, 167, 0.08);
    backdrop-filter: blur(12px);
}

.syllabus-intro-card {
    border-radius: 30px;
    padding: 30px;
}

.syllabus-label,
.section-eyebrow {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ece6ff;
    color: #5b4cc8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.syllabus-intro-card h2 {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #2b2368;
    margin-bottom: 14px;
}

.syllabus-intro-card p {
    font-size: 16px;
    line-height: 1.85;
    color: #615c77;
    max-width: 780px;
}

.syllabus-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.syllabus-highlight {
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 128px;
}

.syllabus-highlight span,
.project-point strong {
    color: #6b6780;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.syllabus-highlight strong {
    color: #2b2368;
    font-size: 24px;
    letter-spacing: -0.8px;
}

.syllabus-section {
    margin-top: 42px;
}

.section-heading-block {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 28px;
}

.section-heading-block .section-title {
    margin-bottom: 14px;
    font-size: 40px;
}

.section-heading-block .section-description {
    margin-bottom: 0;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.module-card {
    position: relative;
    border-radius: 28px;
    padding: 28px;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #7c6ae8 0%, #b183f2 50%, #7fd4ff 100%);
}

.module-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.module-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f0eaff, #fbf9ff);
    color: #5b4cc8;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.module-card h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #2b2368;
    margin-top: 5px;
    letter-spacing: -0.6px;
}

.module-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.module-card li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #635d78;
}

.module-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e5bd8, #8e72e7);
}

.module-card-accent {
    background: linear-gradient(135deg, rgba(110, 91, 216, 0.12), rgba(255, 255, 255, 0.92));
}

.project-panel {
    border-radius: 30px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.project-point {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(139, 122, 230, 0.12);
}

.project-point strong {
    display: block;
}

.project-point span {
    color: #635d78;
    line-height: 1.8;
    font-size: 15px;
}

.card-link {
    color: inherit;
    text-decoration: none;
}

.card-link:hover {
    color: inherit;
}

.card-link-wrap {
    position: relative;
}

.card-hitarea {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
}

.card-link-wrap > *:not(.card-hitarea) {
    position: relative;
    z-index: 1;
}

.card-link-wrap .card-button {
    margin-top: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #4B3FA7;
    background: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(109, 91, 208, 0.08);
}

..section-wrapper {
    margin-top: 64px;
    padding: 0 24px;
}

.section-wrapper#about-trainer {
    margin-top: 88px;
}

.section-wrapper:first-child {
    margin-top: 0;
}

.contact-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.contact-card,
.contact-form-card {
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(75, 63, 167, 0.1);
    box-shadow: 0 16px 40px rgba(75, 63, 167, 0.06);
    padding: 24px;
}

.contact-card h2 {
    font-size: 24px;
    color: #22195f;
    margin-bottom: 10px;
}

.contact-card p {
    color: #5f5a78;
    line-height: 1.75;
    margin-bottom: 16px;
}

.contact-list {
    display: grid;
    gap: 10px;
}

.contact-item {
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f6f1ff 0%, #eef8ff 100%);
    color: #4b3fa7;
    font-weight: 700;
    font-size: 14px;
}

.contact-form-card {
    overflow: hidden;
}

.contact-form-card iframe {
    width: 100%;
    min-height: 1400px;
    height: 100%;
    border: 0;
    border-radius: 20px;
    display: block;
    background: #fff;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: #4B3FA7;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
    text-align: center;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
}

.section-description {
    font-size: 15px;
    color: #6B6780;
    max-width: 860px;
    line-height: 1.7;
    margin: 0 auto 22px;
    text-align: center;
}

.home-path-grid {
    margin-top: 8px;
}

.home-card {
    min-height: 260px;
}

.home-card .card-icon {
    margin-bottom: 16px;
}

.about-trainer {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f3ff 100%);
    border: 1px solid rgba(75, 63, 167, 0.1);
    box-shadow: 0 16px 40px rgba(75, 63, 167, 0.06);
}

.trainer-copy h2 {
    font-size: 30px;
    color: #22195f;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
}

.trainer-copy p {
    font-size: 15px;
    line-height: 1.8;
    color: #5f5a78;
    margin-bottom: 14px;
}

.trainer-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 20px;
}

.trainer-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3ebff;
    color: #4b3fa7;
    font-size: 12px;
    font-weight: 700;
}

.trainer-panel {
    border-radius: 24px;
    padding: 24px;
    background: linear-gradient(145deg, #f4edff 0%, #eef8ff 100%);
    border: 1px solid rgba(75, 63, 167, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trainer-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #4b3fa7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trainer-stats {
    display: grid;
    gap: 10px;
    margin-bottom: 4px;
}

.trainer-stat {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(75, 63, 167, 0.08);
}

.highlight-stat {
    background: linear-gradient(135deg, #ffffff 0%, #f0e8ff 100%);
    border-color: rgba(110, 91, 216, 0.18);
    box-shadow: 0 8px 18px rgba(75, 63, 167, 0.08);
}

.trainer-stat strong {
    display: block;
    font-size: 18px;
    color: #22195f;
}

.trainer-stat span {
    font-size: 13px;
    color: #6b6780;
}

.trainer-list {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

.trainer-list-item {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: #4b3fa7;
    font-size: 13px;
    font-weight: 700;
}

.cert-category {
    margin-bottom: 90px;
}

.cert-category-header {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
}

.cert-category-kicker {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ece6ff;
    color: #5f4fd1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cert-category-title {
    font-size: 30px;
    line-height: 1.2;
    color: #332a78;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.cert-category-description {
    font-size: 16px;
    color: #6B6780;
    line-height: 1.9;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.training-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #faf7ff 100%);
    border-radius: 20px;
    padding: 20px 18px 18px;
    overflow: hidden;
    border: 1px solid rgba(75, 63, 167, 0.08);
    box-shadow: 0 8px 22px rgba(75, 63, 167, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.training-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(75, 63, 167, 0.1);
}

.training-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #7c6ae8 0%, #b183f2 50%, #7fd4ff 100%);
}

.training-card::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 106, 232, 0.12) 0%, rgba(124, 106, 232, 0) 70%);
    border-radius: 50%;
}

.card-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    font-size: 30px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #f7f2ff 0%, #eef8ff 100%);
    box-shadow: 0 8px 18px rgba(75, 63, 167, 0.06);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.card-tag {
    padding: 8px 16px;
    border-radius: 50px;
    background: #F3EEFF;
    color: #6D5BD0;
    font-size: 13px;
    font-weight: 600;
}

.training-card h3 {
    font-size: 18px;
    line-height: 1.35;
    color: #4B3FA7;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.2px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.training-card p {
    font-size: 14px;
    color: #666276;
    line-height: 1.65;
    margin-bottom: 12px;
    flex: 1;
}

.card-button {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3ebff;
    color: #4b3fa7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.card-button:hover {
    background: #e9defe;
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .main-container {
        width: 94%;
        padding: 0 0 70px;
    }

    .page-header {
        min-height: 100vh;
        padding: 18px;
        border-radius: 0 0 30px 30px;
        margin-bottom: 40px;
    }

    .page-header h1 {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .hero-shell {
        min-height: calc(100vh - 36px);
        padding: 10px 0 8px;
    }

    .hero-topbar {
        justify-content: center;
    }

    .hero-content {
        padding: 32px 18px 24px;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .hero-kicker {
        margin-bottom: 16px;
    }

    .page-header p {
        font-size: 15px;
        line-height: 1.85;
    }

    .hero-meta {
        gap: 10px;
        margin-top: 18px;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .hero-action {
        width: 100%;
    }

    .hero-scroll {
        margin-top: 16px;
    }

    .syllabus-page {
        width: 94%;
    }

    .syllabus-intro {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .syllabus-intro-card h2 {
        font-size: 26px;
    }

    .syllabus-highlights,
    .module-grid,
    .project-panel {
        grid-template-columns: 1fr;
    }

    .section-heading-block .section-title {
        font-size: 30px;
    }

    .module-card h3 {
        font-size: 21px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-trainer {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 45px;
    }

    .cert-category {
        margin-bottom: 70px;
    }

    .cert-category-title {
        font-size: 24px;
    }

    .cert-category-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .training-grid {
        gap: 24px;
    }

    .training-card {
        min-height: auto;
        padding: 30px;
        border-radius: 28px;
    }

    .training-card h3 {
        font-size: 22px;
    }

    .card-icon {
        width: 96px;
        height: 96px;
        font-size: 44px;
    }

    .card-button {
        padding: 9px 14px;
        font-size: 13px;
    }
}
