/* 
   Color Palette: charcoal-teal
   Primary: #1C2A35 (Dark Slate)
   Secondary: #37474F (Blue Grey)
   Accent: #00695C (Teal)
   Bg Tint: #F5F8F8 (Soft Pastel Tint)
   Design Style: soft-organic (Rounded corners, smooth hovers, blob-like feel)
   Border Style: pill (36px cards, 50px buttons)
   Shadow Style: dramatic (Deep cinematographic shadows)
   Color Mode: light (All sections light, dark text, bright accents)
*/

:root {
    --color-primary: #1C2A35;
    --color-secondary: #37474F;
    --color-accent: #00695C;
    --bg-tint: #F5F8F8;
    --text-dark: #212121;
    --text-muted: #546E7A;
    --white: #FFFFFF;
    --radius-pill: 50px;
    --radius-card: 36px;
    --shadow-dramatic: 0 24px 64px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 32px 80px rgba(0, 0, 0, 0.22);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-tint);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    z-index: 100;
}

/* Hamburger - ALWAYS RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-primary);
    transition: 0.3s;
    border-radius: 3px;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    color: var(--color-secondary);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.desktop-nav .nav-list a:hover {
    background-color: var(--bg-tint);
    color: var(--color-accent);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav li a {
    color: var(--color-primary);
    font-size: 18px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(28, 42, 53, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 105, 92, 0.3);
}

.btn-secondary-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary-outline:hover {
    background-color: var(--white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section: Floating Card Layout */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 16px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(55, 71, 79, 0.65);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.floating-hero-card {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    max-width: 700px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}

.floating-hero-card:hover {
    transform: translateY(-5px);
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-hero-card h1 {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.floating-hero-card p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Benefits Section (2x2 Grid) */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--color-primary);
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

@media (min-width: 576px) {
    .testimonial-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.testimonial-content {
    flex-grow: 1;
}

.stars {
    color: #FFB300;
    margin-bottom: 10px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--color-primary);
    font-weight: 600;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background-color: var(--white);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-tint);
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--white);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 105, 92, 0.15);
    position: absolute;
    top: 15px;
    right: 20px;
}

.step-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
}

.css-placeholder-gallery {
    background-color: var(--color-secondary);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    border-radius: var(--radius-card);
    padding: 20px;
    text-align: center;
}

/* Internal Pages Hero */
.internal-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}
.mission-hero .container,
.internal-hero .container {
    position: relative;
    z-index: 5;
}

.internal-hero h1 {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 15px;
}

.internal-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Split Content Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .split-content {
        flex-direction: row;
        align-items: center;
    }
    .text-block, .image-block {
        flex: 1;
    }
}

.text-block h2 {
    color: var(--color-primary);
    font-size: 32px;
    margin-bottom: 20px;
}

.text-block p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.image-block img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

/* Program Grid 6 Cards */
.modules-section {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.module-num {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--bg-tint);
    color: var(--color-accent);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 15px;
}

.module-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.module-card p {
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-tint);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-dramatic);
}

.faq-item summary {
    font-weight: 600;
    font-size: 18px;
    color: var(--color-primary);
    cursor: pointer;
    outline: none;
}

.faq-item p {
    margin-top: 15px;
    color: var(--text-muted);
}

/* CTA Card */
.cta-section {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.cta-card {
    background-color: var(--color-secondary);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow-dramatic);
    max-width: 900px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-card p {
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.9;
}

/* Mission Hero & Story */
.mission-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
}

.story-section {
    padding: 80px 0;
    background-color: var(--white);
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .story-grid {
        flex-direction: row;
        align-items: center;
    }
    .story-text, .story-image {
        flex: 1;
    }
}

.story-text h2 {
    color: var(--color-primary);
    font-size: 32px;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-image img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    text-align: center;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
}

/* Manifesto */
.manifesto-section {
    padding: 80px 0;
    background-color: var(--white);
}

.manifesto-card {
    background-color: var(--color-primary);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-card);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-dramatic);
}

.manifesto-card h2 {
    margin-bottom: 20px;
}

.manifesto-card p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
}

/* Contact Grid Layout */
.contact-section-layout {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 6fr 4fr;
    }
}

.contact-form-block {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.contact-form-block h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.contact-form-block p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input, .form-group textarea {
    padding: 14px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-pill);
    background-color: var(--bg-tint);
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    border-radius: var(--radius-card);
    resize: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 105, 92, 0.1);
}

.contact-info-block h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.contact-info-block p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.info-item-card h4 {
    color: var(--color-accent);
    margin-bottom: 8px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-page h1 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.last-update {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.legal-section ul {
    padding-left: 20px;
    color: var(--text-muted);
}

.legal-section li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-page {
    padding: 100px 0;
    background-color: var(--bg-tint);
    text-align: center;
}

.thank-card {
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
}

.thank-card h1 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.thank-card p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.next-steps {
    text-align: left;
    background-color: var(--bg-tint);
    padding: 30px;
    border-radius: var(--radius-card);
}

.next-steps h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    margin-bottom: 12px;
}

.next-steps li a {
    font-weight: 600;
}

/* Footer Section */
.site-footer {
    padding: 60px 0 20px 0;
    font-size: 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-info p {
    margin-top: 15px;
    opacity: 0.8;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-legal h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover, .footer-legal a:hover {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
    font-size: 13px;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: var(--color-primary);
    color: var(--white);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

#cookie-banner a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    cursor: pointer;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}

/* Mobile Adaptability */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}