/* 
   Theme: Mikael Inspired - Bold Minimal Red
   Primary Color: #ff3b3f
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary-red: #ff3b3f;
    --primary-red-hover: #e63034;
    --red-light: #ffe5e5;
    --bg-white: #ffffff;
    --bg-light-gray: #f5f5f7;
    --text-black: #111111;
    --text-gray: #777777;
    --border-gray: #e0e0e0;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-black);
    background: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    /* Transparent by default */
}

#header.scrolled {
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-white);
    /* White by default */
    letter-spacing: -0.5px;
    transition: var(--transition);
}

#header.scrolled .logo {
    color: var(--text-black);
    /* Black on scroll */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-white);
    /* White by default */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

#header.scrolled .main-nav a {
    color: var(--text-black);
    /* Black on scroll */
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-white);
    /* White underline by default */
    transition: var(--transition);
}

#header.scrolled .main-nav a::after {
    background: var(--primary-red);
    /* Red underline on scroll */
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--bg-white);
    /* Keep white on hover/active at top */
    opacity: 1;
}

#header.scrolled .main-nav a:hover,
#header.scrolled .main-nav a.active {
    color: var(--primary-red);
    /* Red on hover/active on scroll */
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--bg-white);
    /* White by default */
    transition: var(--transition);
}

#header.scrolled .mobile-toggle span {
    background: var(--text-black);
    /* Black on scroll */
}



/* Section Index */
.section-index {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.index-item {
    font-family: var(--font-heading);
    font-size: 0;
    /* Hide the number text */
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding-right: 20px;
    height: 12px;
    /* Maintain height for the dot */
    width: 20px;
    /* Maintain width for click area */
}

.index-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid var(--text-gray);
    transition: var(--transition);
}

.index-item.active,
.index-item:hover {
    color: var(--primary-red);
}

.index-item.active::after,
.index-item:hover::after {
    background: var(--primary-red);
    border-color: var(--primary-red);
    width: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-red);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--bg-white);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 59, 63, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 59, 63, 0.3);
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 60px;
    position: relative;
}

.section-title.centered {
    text-align: center;
}

.section-title.centered::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 20px auto 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    background-color: #ba000e;
    /* Updated Rich Red Background */
    color: var(--bg-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.intro-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-white);
    /* White text */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    animation: fadeInUp 0.6s ease-out;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--bg-white);
    /* White text */
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-white);
    /* White text */
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 18px;
    color: var(--bg-white);
    /* White text */
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* Update buttons for red background */
.hero-buttons .btn-primary {
    background: var(--bg-white);
    color: #ba000e;
    /* Match background red */
    border-color: var(--bg-white);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.hero-buttons .btn-outline:hover {
    background: var(--bg-white);
    color: #ba000e;
    /* Match background red */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-decoration {
    position: absolute;
    left: -40px;
    bottom: 0;
    width: 4px;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-white), transparent);
    /* White gradient */
    opacity: 0.5;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.image-wrapper {
    position: relative;
    overflow: visible;
    /* Allow image to overlap if needed */
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: none;
    /* Remove grayscale */
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    display: none;
    /* Remove overlay for clean look */
}

.corner-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid var(--bg-white);
    /* White accents */
    opacity: 0.5;
}

.corner-accent.top-right {
    top: -20px;
    right: -20px;
    border-left: none;
    border-bottom: none;
}

.corner-accent.bottom-left {
    bottom: -20px;
    left: -20px;
    border-right: none;
    border-top: none;
}

/* Highlights Section */
.highlights-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light-gray);
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.highlights-top {
    display: flex;
    justify-content: center;
}

.highlights-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-large {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border: 3px solid var(--primary-red);
    transition: var(--transition);
    max-width: 300px;
    box-shadow: 0 10px 40px rgba(255, 59, 63, 0.15);
}

.highlight-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 59, 63, 0.25);
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 96px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -3px;
}

.highlight-label {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    line-height: 1.4;
}

.highlight-item {
    padding: 40px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-gray);
    transition: var(--transition);
    text-align: center;
}

.highlight-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-black);
}

.highlight-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: #fcfcfc;
    /* Very subtle gray/white */
    border-left: 5px solid var(--primary-red);
    /* Red Accent Line */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border-radius: 0 8px 8px 0;
    position: relative;
    text-align: left;
    /* Left align text for better readability in card */
}

/* Decorative quote icon */
.about-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
    font-size: 80px;
    color: var(--primary-red);
    opacity: 0.1;
    line-height: 1;
}

.about-content .section-title {
    text-align: left;
    /* Align title left with text */
    margin-bottom: 30px;
}

.about-lead {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-black);
    line-height: 1.6;
    margin-bottom: 0;
    /* Remove bottom margin as wrapper handles it */
}

.current-role-wrapper {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.role-label {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.role-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-red);
}

.about-text {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-text strong {
    color: var(--text-black);
    font-weight: 700;
}

/* Inline Logo Styles */
.inline-logo-link {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    margin: 0 4px;
    position: relative;
}

.inline-logo {
    height: 24px;
    /* Slightly larger for better visibility */
    width: auto;
    vertical-align: middle;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy transition */
    margin-top: -4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    /* Subtle depth */
}

.inline-logo-link:hover .inline-logo {
    transform: translateY(-3px) scale(1.15) rotate(-2deg);
    /* Lift, scale, and slight tilt */
    filter: drop-shadow(0 8px 12px rgba(186, 0, 14, 0.25));
    /* Soft red shadow */
}

.about-facts strong {
    color: var(--text-black);
    font-weight: 700;
    margin-right: 8px;
    display: block;
    /* Stack label and value */
    margin-bottom: 5px;
    color: var(--primary-red);
    /* Accent color for labels */
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Certifications Section */
.certifications-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.certification-card {
    padding: 40px 30px;
    border: 2px solid var(--border-gray);
    transition: var(--transition);
    background: var(--bg-white);
    text-align: center;
    position: relative;
}

.certification-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cert-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition);
}

.certification-card:hover .cert-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.cert-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border: 1px solid var(--primary-red);
    border-radius: 2px;
}

.certification-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-black);
    line-height: 1.4;
}

.cert-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    margin-top: 10px;
}


/* Skills Section */
.skills-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light-gray);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.skills-column h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.skill-bar {
    margin-bottom: 30px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-black);
}

.progress {
    height: 8px;
    background: var(--border-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-red);
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill-tag {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-gray);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-black);
    transition: var(--transition);
    cursor: default;
}

.skill-tag:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Experience Section */
.experience-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.timeline {
    max-width: 900px;
    margin: 60px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-gray);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-gray);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-red);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-red);
    z-index: 2;
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-black);
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.timeline-content ul {
    list-style: none;
    margin-top: 15px;
}

.timeline-content li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.timeline-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
}

/* Education Section */
.education-section {
    margin-top: 100px;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.education-item {
    padding: 40px;
    border: 2px solid var(--border-gray);
    transition: var(--transition);
}

.education-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.education-year {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.education-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.education-item p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.education-institution {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-black);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-black);
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-red-hover);
}

.contact-item span {
    color: var(--text-gray);
    font-size: 16px;
}

/* Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-gray);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-black);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--text-black);
    color: var(--bg-white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 14px;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-gray);
    color: var(--text-gray);
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 30px;
    }

    .section-index {
        right: 20px;
    }

    .hero-grid,
    .about-services-grid,
    .skills-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 60px;
    }

    .highlights-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-large {
        grid-column: span 2;
    }

    .services-grid,
    .education-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .section-index {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 36px;
    }

    .highlights-bottom,
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .highlight-large {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}