:root {
    --brand-orange: #fd7726;
    --brand-orange-light: #ff9a56;
    --brand-dark: #1a1a1a;
    --bg-pattern-color: rgba(253, 119, 38, 0.08);
    color-scheme: light;
    /* Force light scheme */
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Plus Jakarta Sans', 'Roboto', sans-serif;
    scroll-behavior: smooth;
    background-color: #ffffff !important;
    /* Force white bg */
    margin: 0;
    padding: 0;
    color: var(--brand-dark);
    background-image: url("/media/tlo-cutout.png");
    background-size: auto;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: none !important;
    /* Disable dark mode dimming */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 600px;
    background-image: url("/media/tlo-cutout.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    transform: rotate(180deg);
    pointer-events: none;
    z-index: -1;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 3rem;
        background: none;
    }

    .landing-footer {
        background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);
    }

    main.pt-24 {
        padding-top: 0 !important;
    }
}

.bg-pattern {
    background-image: radial-gradient(var(--bg-pattern-color) 1px, transparent 1px);
    background-size: 24px 24px;
}

.orange-gradient-text {
    background: linear-gradient(135deg, var(--brand-orange), #e65100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(253, 119, 38, 0.2);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 20px 40px rgba(253, 119, 38, 0.15);
}

.active-problem {
    background: var(--brand-orange) !important;
    color: white !important;
    border-color: var(--brand-orange) !important;
}

.active-problem p,
.active-problem h3 {
    color: white !important;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 119, 38, 0.3);
}

.shape-blob {
    position: absolute;
    background: radial-gradient(circle, rgba(253, 119, 38, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Hide shape-blob on mobile to prevent overflow */
@media (max-width: 768px) {
    .shape-blob {
        display: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll-animate {
    opacity: 0;
}

.scroll-animate.animate-in {
    animation-duration: 0.6s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
}

.scroll-animate.fade-up.animate-in {
    animation-name: fadeInUp;
}

.scroll-animate.fade-left.animate-in {
    animation-name: fadeInLeft;
}

.scroll-animate.fade-right.animate-in {
    animation-name: fadeInRight;
}

.scroll-animate.scale-in.animate-in {
    animation-name: scaleIn;
}

.scroll-animate.delay-1 {
    animation-delay: 0.1s;
}

.scroll-animate.delay-2 {
    animation-delay: 0.2s;
}

.scroll-animate.delay-3 {
    animation-delay: 0.3s;
}

.scroll-animate.delay-4 {
    animation-delay: 0.4s;
}

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

/* Layout helpers */
.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* Flexbox & Grid */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Spacing */
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    width: 100%;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pb-24 {
    padding-bottom: 6rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

/* Typography */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

.line-through {
    text-decoration: line-through;
}

.italic {
    font-style: italic;
}

/* Colors */
.text-white {
    color: white;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-500 {
    color: #64748b;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-700 {
    color: #334155;
}

.text-slate-900 {
    color: #0f172a;
}

.text-green-600 {
    color: #16a34a;
}

.bg-white {
    background-color: white;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-orange-50 {
    background-color: #fff7ed;
}

.bg-orange-100 {
    background-color: #ffedd5;
}

/* Borders & Shadows */
.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-slate-100 {
    border-color: #f1f5f9;
}

.border-orange-100 {
    border-color: #ffedd5;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Sizing */
.w-full {
    width: 100%;
}

.w-10 {
    width: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.h-1 {
    height: 0.25rem;
}

.h-10 {
    height: 2.5rem;
}

.shrink-0 {
    flex-shrink: 0;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

/* Misc */
.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.cursor-pointer {
    cursor: pointer;
}

.transition {
    transition-property: all;
    transition-duration: 150ms;
}

.transform {
    transform: translateX(0);
}

.rotate-180 {
    transform: rotate(180deg);
}

.grayscale {
    filter: grayscale(100%);
}

.grayscale:hover {
    filter: grayscale(0%);
}

.object-cover {
    object-fit: cover;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

/* Responsive */
@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:items-center {
        align-items: center;
    }

    .md\:w-1\/3 {
        width: 33.333333%;
    }

    .md\:w-2\/3 {
        width: 66.666667%;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
    }

    .md\:text-xl {
        font-size: 1.25rem;
    }

    .md\:p-14 {
        padding: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    /* Center the last item if it's alone in a 3-column grid row */
    .grid-center-last-lg> :last-child:nth-child(3n + 1) {
        grid-column-start: 2;
    }
}

/* Brand color classes */
.text-brand {
    color: var(--brand-orange);
}

.main-logo-hero {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.portfolio-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.portfolio-card:hover h3 {
    color: var(--brand-orange);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.bg-brand {
    background-color: var(--brand-orange);
}

.border-brand {
    border-color: var(--brand-orange);
}

/* Custom font weight */
.font-extrabold {
    font-weight: 800;
}

/* Solution box - light background */
.solution-box {
    background: linear-gradient(135deg, #fff9f5 0%, #fff5ed 100%);
    border: 2px solid rgba(253, 119, 38, 0.2);
    border-left: 4px solid var(--brand-orange);
    color: var(--brand-dark);
}

/* Agenda arrows */
.agenda-arrow {
    color: transparent;
    font-size: 0.625rem;
    background: transparent;
    transition: transform 0.3s;
    margin-left: 1rem;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--brand-orange);
}

details[open] .agenda-arrow {
    transform: rotate(180deg);
}

/* Scroll down arrow */
.scroll-down-arrow {
    display: inline-block;
    margin-top: 3rem;
    color: var(--brand-orange);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Footer styles */
.landing-footer {
    background: transparent;
    color: #000;
    width: 100%;
    max-width: 100%;
}

.landing-footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.landing-footer a:hover {
    color: var(--brand-orange);
}

.social-footer-landing {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    margin: 1.5rem 0;
    padding: 0;
}

.social-footer-landing a {
    color: #333;
}

.social-footer-landing a:hover {
    color: var(--brand-orange);
}

.footer-links-landing {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links-landing .separator {
    margin: 0 0.75rem;
    color: #999;
}

/* Newsletter section in footer */
.newsletter-footer-section {
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-footer-section h3 {
    color: var(--brand-orange);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Footer columns */
.footer-columns {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
    max-width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col h4 {
    color: var(--brand-orange);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #666;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--brand-orange);
}

.social-icons-grid {
    display: flex;
    gap: 1rem;
}

.social-icons-grid a {
    font-size: 1.25rem;
    color: #333;
    transition: color 0.2s;
}

.social-icons-grid a:hover {
    color: var(--brand-orange);
}

@media (max-width: 480px) {
    .footer-columns {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }
}

/* Newsletter form styles override */
.newsletter-footer-section .newsletter-form-container {
    max-width: 100%;
}

.newsletter-footer-section .newsletter-form {
    text-align: left;
}

.newsletter-footer-section label {
    color: #333;
    font-weight: 600;
}

.newsletter-footer-section .checkbox-label {
    color: #333;
    font-size: 0.875rem;
}

.newsletter-footer-section .checkbox-label span {
    color: #555;
}

.newsletter-footer-section input[type='email'] {
    border: 2px solid rgba(253, 119, 38, 0.3);
    border-radius: 8px;
    padding: 0.875rem 1rem;
}

.newsletter-footer-section input[type='email']:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(253, 119, 38, 0.1);
}

.newsletter-footer-section .submit-button {
    background: var(--brand-orange);
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.newsletter-footer-section .submit-button:hover:not(:disabled) {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 119, 38, 0.3);
}

.newsletter-footer-section .checkbox-label a {
    color: var(--brand-orange);
}

.newsletter-footer-section .success-message {
    background: #d4edda;
    border-radius: 8px;
}

.newsletter-footer-section .error-message-global {
    border-radius: 8px;
}

/* FAQ styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a1a;
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary:hover {
    background: #f1f5f9;
}

.faq-icon {
    color: var(--brand-orange);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.faq-content ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
}

.faq-content p {
    margin: 0.5rem 0;
}

.faq-highlight {
    background: rgba(253, 119, 38, 0.1);
    padding: 1rem;
    border-left: 4px solid var(--brand-orange);
    margin-top: 1rem;
    border-radius: 0 8px 8px 0;
}

/* Training form wrapper styles */
.training-form-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: left;
}

.training-form-wrapper .training-form-container {
    max-width: 100%;
}

.training-form-wrapper label {
    color: #333;
    font-weight: 600;
}

.training-form-wrapper input[type='text'],
.training-form-wrapper input[type='email'],
.training-form-wrapper select {
    width: 100%;
    border: 2px solid rgba(253, 119, 38, 0.3);
    border-radius: 8px;
    padding: 0.875rem 1rem;
}

.training-form-wrapper input:focus,
.training-form-wrapper select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(253, 119, 38, 0.1);
    outline: none;
}

.training-form-wrapper .optional-section {
    background: linear-gradient(135deg, #fff9f5 0%, #fff5ed 100%);
    border: 1px solid rgba(253, 119, 38, 0.2);
    border-radius: 12px;
}

.training-form-wrapper .submit-button {
    background: var(--brand-orange);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.training-form-wrapper .submit-button:hover:not(:disabled) {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 119, 38, 0.3);
}

.training-form-wrapper .checkbox-label a {
    color: var(--brand-orange);
}

.training-form-wrapper .payment-info {
    border-radius: 12px;
}

.training-form-wrapper .success-message {
    text-align: center;
    padding: 2rem 0;
}

.training-form-wrapper .success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.training-form-wrapper .success-message p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.training-form-wrapper .payment-section {
    margin-top: 2rem;
    padding-top: 2rem;
}

.training-form-wrapper .payment-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.training-form-wrapper .payment-info {
    text-align: left;
    padding: 1.5rem;
    border-radius: 12px;
}

.training-form-wrapper .payment-divider {
    margin: 2.5rem 0;
}

.training-form-wrapper .stripe-button-wrapper {
    margin: 1.5rem 0;
}

/* Newsletter Full Width Section */
.newsletter-full-section {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
    box-shadow: 0 20px 40px -10px rgba(253, 119, 38, 0.1);
}

.newsletter-full-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .newsletter-full-container {
        flex-direction: row;
    }
}

.newsletter-full-image {
    flex: 1;
    min-height: 180px;
    max-height: 200px;
    overflow: hidden;
}

.newsletter-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* White overlay on mobile for better readability */
@media (max-width: 767px) {
    .newsletter-full-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
        pointer-events: none;
    }

    .newsletter-full-image {
        position: relative;
    }
}

@media (min-width: 768px) {
    .newsletter-full-image {
        min-height: 280px;
        max-height: 320px;
    }
}

.newsletter-full-content {
    flex: 1;
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .newsletter-full-content {
        padding: 2rem 3rem;
    }
}

.newsletter-full-content h2 {
    color: var(--brand-orange);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

.newsletter-full-content>p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
}

.newsletter-full-content .newsletter-form-container {
    max-width: 100%;
}

.newsletter-full-content .newsletter-form {
    text-align: left;
}

.newsletter-full-content label {
    color: #333;
    font-weight: 600;
}

.newsletter-full-content .checkbox-label {
    color: #333;
    font-size: 0.875rem;
}

.newsletter-full-content .checkbox-label span {
    color: #555;
}

.newsletter-full-content input[type='email'] {
    border: 2px solid rgba(253, 119, 38, 0.3);
    border-radius: 8px;
    padding: 0.875rem 1rem;
}

.newsletter-full-content input[type='email']:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(253, 119, 38, 0.1);
}

.newsletter-full-content .submit-button {
    background: var(--brand-orange);
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.newsletter-full-content .submit-button:hover:not(:disabled) {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 119, 38, 0.3);
}

.newsletter-full-content .checkbox-label a {
    color: var(--brand-orange);
}

.newsletter-full-content .success-message {
    background: #d4edda;
    border-radius: 8px;
}

.newsletter-full-content .error-message-global {
    border-radius: 8px;
}

/* Mobile Menu Styles */
@media (max-width: 1023px) {
    div.menu.mobile {
        background-color: #fd7726;
        color: white;
        position: fixed;
        width: 100%;
        height: auto;
        top: -100%;
        left: 0;
        padding: 30px;
        z-index: 1001;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    div.menu.mobile.menu-show {
        top: 0px;
    }

    .burger.mobile {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 40px;
        transition: 0.3s ease;
        z-index: 1002;
        cursor: pointer;
        background-color: white;
        padding: 8px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .burger.mobile span {
        display: block;
        width: 100%;
        height: 4px;
        background-color: #fd7726;
        transition: 0.3s ease;
        border-radius: 2px;
    }

    .burger.mobile.menu-show span:nth-child(1) {
        transform: rotate(-45deg) translate(-9px, 6px);
        background-color: white;
    }

    .burger.mobile.menu-show span:nth-child(2) {
        opacity: 0;
    }

    .burger.mobile.menu-show span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
        background-color: white;
    }

    a.menu-item.mobile {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        width: 100%;
        text-align: center;
        text-decoration: none;
        color: white;
    }

    a.menu-item.mobile:last-child {
        border-bottom: none;
    }
}

@media (min-width: 1024px) {
    .burger.mobile,
    div.menu.mobile {
        display: none !important;
    }
}

/* Disable dark mode for modern pages (szkolenie, konsultacje) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #ffffff !important;
        background-image: none !important;
        color: #1a1a1a !important;
        filter: none !important;
    }

    /* Only reset colors for elements that don't have explicit color classes */
    h1:not([class*="text-"]),
    h2:not([class*="text-"]),
    h3:not([class*="text-"]),
    h4:not([class*="text-"]),
    h5:not([class*="text-"]),
    h6:not([class*="text-"]) {
        color: inherit !important;
    }

    p:not([class*="text-"]),
    li:not([class*="text-"]),
    span:not([class*="text-"]) {
        color: inherit !important;
    }
}
