
/* CSS Variables & Global Styles */
        :root {
            --bg-light-gray: #F4F4F5;
            --text-dark-blue: #0A1931;
            --cta-orange: #FF6700;
            --cta-orange-hover: #E05A00;
            --card-white: #FFFFFF;
            --border-color: #E2E8F0;
            --font-display: 'Arial Black', Gadget, sans-serif;
            --font-body: 'Helvetica', Arial, sans-serif;
        }

        /* Reset and Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-light-gray);
            color: var(--text-dark-blue);
            font-family: var(--font-body);
            line-height: 1.7;
            font-size: 16px;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1.2;
            color: var(--text-dark-blue);
        }

        h1 { font-size: 4rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.5rem; }
        p { margin-bottom: 1rem; }
        a { color: var(--text-dark-blue); text-decoration: none; }

        /* Layout Primitives */
        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: 6rem 0;
        }
        
        /* Animation */
        .revealable {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }
        .revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(244, 244, 245, 0.85);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-color);
        }

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

        .logo-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            letter-spacing: 0.1em;
        }
        
        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }

        .main-navigation a {
            font-family: var(--font-body);
            font-weight: bold;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .main-navigation a:hover {
            color: var(--cta-orange);
        }

        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--cta-orange);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .main-navigation a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Hero Section */
        .hero-panorama {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding-top: 90px; /* Header height */
        }

        .hero-text-unit {
            text-align: center;
            max-width: 900px;
        }

        .hero-text-unit h1 {
            margin-bottom: 1.5rem;
        }
        
        .hero-subheadline {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem auto;
            line-height: 1.6;
        }

        .action-button {
            display: inline-block;
            background-color: var(--cta-orange);
            color: var(--card-white);
            font-family: var(--font-display);
            font-size: 1.2rem;
            letter-spacing: 0.1em;
            padding: 1rem 3rem;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .action-button:hover {
            background-color: var(--cta-orange-hover);
            transform: translateY(-3px);
        }
        
        /* Section Title */
        .section-headline {
            text-align: center;
            margin-bottom: 4rem;
        }

        /* How It Works Section */
        .process-framework {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .process-step-card {
            background-color: var(--card-white);
            border: 1px solid var(--border-color);
            padding: 2rem;
            position: relative;
        }
        
        .step-number {
             font-family: var(--font-display);
             font-size: 3rem;
             color: var(--border-color);
             position: absolute;
             top: 1rem;
             right: 1.5rem;
        }

        .process-step-card h3 {
            margin-bottom: 1rem;
        }

        /* What's in the Box Section */
        .kit-contents-list {
            background-color: var(--card-white);
            border: 1px solid var(--border-color);
            padding: 3rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem 2rem;
            list-style-type: none;
        }
        
        .kit-contents-list li {
            font-size: 1.1rem;
            position: relative;
            padding-left: 2rem;
        }
        
        .kit-contents-list li::before {
            content: '✓';
            color: var(--cta-orange);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* Reviews Section */
        .testimonial-grid-system {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .testimonial-plaque {
            background-color: var(--card-white);
            border: 1px solid var(--border-color);
            padding: 2rem;
        }

        .plaque-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .avatar-initials {
            width: 50px;
            height: 50px;
            background-color: var(--border-color);
            color: var(--text-dark-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.2rem;
        }
        
        .user-name {
            font-family: var(--font-body);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .testimonial-plaque blockquote {
            font-style: italic;
            border-left: 3px solid var(--cta-orange);
            padding-left: 1.5rem;
        }

        /* Benefits Section */
        .benefit-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .benefit-unit {
            background-color: transparent;
            border: 1px solid var(--border-color);
            padding: 2rem;
            transition: background-color 0.3s, border-color 0.3s;
        }
        
        .benefit-unit:hover {
            background-color: var(--card-white);
            border-color: var(--text-dark-blue);
        }
        
        .benefit-icon {
            margin-bottom: 1.5rem;
        }
        
        .benefit-icon svg {
             width: 48px;
             height: 48px;
             stroke: var(--cta-orange);
             stroke-width: 1.5;
             fill: none;
        }

        .benefit-unit h3 {
            margin-bottom: 0.5rem;
        }

        /* FAQ Section */
        .faq-accordion-structure {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-color);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 1.5rem 0;
            font-family: var(--font-display);
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            color: var(--cta-orange);
        }
        
        .faq-toggle {
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;
            padding: 0 1rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust as needed */
            transition: max-height 1s cubic-bezier(1, 0, 1, 0);
            padding: 0 1rem 1.5rem 1rem;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* Article Section */
        .editorial-section {
            background-color: var(--card-white);
            padding: 5rem;
            border: 1px solid var(--text-dark-blue);
        }
        
        .editorial-section .article-title-text {
            font-family: var(--font-display);
            font-size: 2rem;
            text-align: center;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        .editorial-section .article-subtitle-text {
            text-align: center;
            font-style: italic;
            margin-bottom: 4rem;
        }

        .editorial-section h2 {
            border-top: 2px solid var(--text-dark-blue);
            padding-top: 1rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .editorial-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .editorial-section ul {
            list-style-position: inside;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
        }
        
        .editorial-section li {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .editorial-section table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 1rem;
        }

        .editorial-section th, .editorial-section td {
            border: 1px solid var(--border-color);
            padding: 1rem;
            text-align: left;
        }

        .editorial-section th {
            background-color: var(--bg-light-gray);
            font-family: var(--font-display);
            letter-spacing: 0.05em;
        }
        
        .editorial-section img {
            width: 100%;
            height: auto;
            display: block;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
        }

        /* Footer */
        .site-footer {
            background-color: var(--text-dark-blue);
            color: var(--bg-light-gray);
            padding: 5rem 0;
            font-size: 0.9rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 4rem;
        }
        
        .footer-grid a {
            color: var(--bg-light-gray);
            transition: color 0.3s ease;
        }

        .footer-grid a:hover {
            color: var(--cta-orange);
        }

        .footer-about .logo-title {
            color: var(--card-white);
            margin-bottom: 1rem;
        }
        
        .copyright-text {
            margin-top: 2rem;
            opacity: 0.7;
        }
        
        .footer-nav-group h4 {
            font-family: var(--font-display);
            letter-spacing: 0.1em;
            color: var(--card-white);
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        
        .footer-nav-group ul {
            list-style: none;
        }

        .footer-nav-group li {
            margin-bottom: 0.75rem;
        }


        /* Responsive Design */
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2rem; }

            .process-framework, .benefit-matrix {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonial-grid-system {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-container {
                padding: 0 1rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .header-content {
                flex-direction: column;
                height: auto;
                padding: 1rem 0;
            }
            .logo-title {
                margin-bottom: 1rem;
            }
            .main-navigation ul {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            
            .hero-panorama {
                padding: 120px 0 60px 0;
            }

            .process-framework, .benefit-matrix {
                grid-template-columns: 1fr;
            }

            .kit-contents-list {
                grid-template-columns: 1fr;
            }

            .editorial-section {
                padding: 2rem;
            }
        }


.editorial-section h1 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1.2;
            text-align: center;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 1.5rem;
        }
        .editorial-section h2 {
            font-size: 1.8rem;
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        .editorial-section h3 {
            font-size: 1.3rem;
            font-family: var(--font-display);
            letter-spacing: 0.05em;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        main {
            padding-top: 90px;
        }

/* CSS Variables & Global Styles */
        :root {
            --bg-light-gray: #F4F4F5;
            --text-dark-blue: #0A1931;
            --cta-orange: #FF6700;
            --cta-orange-hover: #E05A00;
            --card-white: #FFFFFF;
            --border-color: #E2E8F0;
            --font-display: 'Arial Black', Gadget, sans-serif;
            --font-body: 'Helvetica', Arial, sans-serif;
        }

        /* Reset and Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-light-gray);
            color: var(--text-dark-blue);
            font-family: var(--font-body);
            line-height: 1.7;
            font-size: 16px;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1.2;
            color: var(--text-dark-blue);
        }
        h1 { font-size: 4rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.5rem; }
        p { margin-bottom: 1rem; }
        a { color: var(--text-dark-blue); text-decoration: none; }

        /* Layout Primitives */
        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .section-padding {
            padding: 6rem 0;
        }

        .page-title-section {
            padding: 160px 0 60px 0;
            text-align: center;
        }
        .page-title-section .page-container {
             max-width: 800px;
        }
        .page-title-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        .page-title-section p {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.6;
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(244, 244, 245, 0.85);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-color);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }
        .logo-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            letter-spacing: 0.1em;
        }
        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }
        .main-navigation a {
            font-family: var(--font-body);
            font-weight: bold;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }
        .main-navigation a:hover {
            color: var(--cta-orange);
        }
        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--cta-orange);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .main-navigation a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Section Title */
        .section-headline {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-headline h2 {
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq-accordion-structure {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--card-white);
            border: 1px solid var(--border-color);
            padding: 1rem 2rem;
        }
        .faq-item {
            border-bottom: 1px solid var(--border-color);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 1.5rem 0;
            font-family: var(--font-display);
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-dark-blue);
        }
        .faq-question:hover {
            color: var(--cta-orange);
        }
        .faq-toggle {
            font-size: 2rem;
            color: var(--cta-orange);
            transition: transform 0.3s ease;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;
            padding: 0 1rem;
        }
        .faq-answer p {
            line-height: 1.8;
        }
        .faq-item.active .faq-answer {
            max-height: 500px; 
            padding-bottom: 1.5rem;
            transition: max-height 1s ease-in-out;
        }
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* Footer */
        .site-footer {
            background-color: var(--text-dark-blue);
            color: var(--bg-light-gray);
            padding: 5rem 0;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 4rem;
        }
        .footer-grid a {
            color: var(--bg-light-gray);
            transition: color 0.3s ease;
        }
        .footer-grid a:hover {
            color: var(--cta-orange);
        }
        .footer-about .logo-title {
            color: var(--card-white);
            margin-bottom: 1rem;
            display: inline-block;
        }
        .copyright-text {
            margin-top: 2rem;
            opacity: 0.7;
        }
        .footer-nav-group h4 {
            font-family: var(--font-display);
            letter-spacing: 0.1em;
            color: var(--card-white);
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        .footer-nav-group ul {
            list-style: none;
        }
        .footer-nav-group li {
            margin-bottom: 0.75rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2rem; }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .page-container {
                padding: 0 1rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .header-content {
                flex-direction: column;
                height: auto;
                padding: 1rem 0;
            }
            .logo-title {
                margin-bottom: 1rem;
            }
            .main-navigation ul {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            .page-title-section {
                 padding: 140px 0 40px 0;
            }
            .page-title-section h1 {
                font-size: 2.8rem;
            }
            .faq-accordion-structure {
                padding: 0.5rem 1rem;
            }
        }

.featured-article-image {

            width: 100%;

            height: auto;

            border-radius: 10px;

            border: 1px solid var(--border-color);

            margin: 2rem 0;

        }

        .editorial-section ul {

            list-style-type: disc;

        }


.page-title-section {
    padding: 160px 0 60px 0;
    text-align: center;
    background-color: var(--card-white);
    border-bottom: 1px solid var(--border-color);
}
.page-title-section .page-container {
     max-width: 900px;
}
.page-title-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.page-title-section p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

main {
    padding-top: 90px;
}

.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.blog-post-card {
    background-color: var(--card-white);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(10, 25, 49, 0.1);
}

.blog-post-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image-wrapper {
    height: 220px;
    overflow: hidden;
}

.blog-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--text-dark-blue);
    text-transform: none;
}

.blog-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-readmore {
    margin-top: auto;
    font-weight: bold;
    color: var(--cta-orange);
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    main {
        padding-top: 0;
    }
    .page-title-section {
        padding: 140px 0 40px 0;
    }
    .page-title-section h1 {
        font-size: 2.8rem;
    }
    .blog-grid-container {
        grid-template-columns: 1fr;
    }
}
