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

:root {
    --charcoal-dark: #1a1a2e;
    --charcoal-medium: #2d2d44;
    --charcoal-light: #3d3d5c;
    --amber-primary: #f39c12;
    --amber-light: #f1c40f;
    --amber-dark: #d68910;
    --electric-orange: #e74c3c;
    --off-white: #f8f9fa;
    --concrete-gray: #7f8c8d;
    --rust-accent: #a0522d;
    --steel-blue: #5d6d7e;
    
    --glass-dark: rgba(45, 45, 68, 0.85);
    --glass-light: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    
    --shadow-industrial: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(243, 156, 18, 0.3);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--charcoal-dark);
    color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

[class*="text-"] strong,
[class*="text-"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
    color: inherit;
}

a {
    color: var(--amber-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--amber-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--off-white);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-primary), var(--electric-orange));
    border-radius: 2px;
}

.section-header p {
    color: var(--concrete-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin-top: 20px;
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--amber-primary), var(--electric-orange));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--charcoal-dark);
    box-shadow: var(--shadow-glow);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--off-white);
    letter-spacing: 0.05em;
}

.logo-text span {
    color: var(--amber-primary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--off-white);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-primary);
    background: var(--glass-light);
}

.nav-cta {
    background: linear-gradient(135deg, var(--amber-primary), var(--amber-dark));
    color: var(--charcoal-dark) !important;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    margin-left: 16px;
}

.nav-cta:hover,
.nav-cta.active {
    background: linear-gradient(135deg, var(--amber-light), var(--amber-primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--off-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--charcoal-dark);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
    
    .nav-cta {
        margin: 16px 0 0;
        width: 100%;
        text-align: center;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 100;
    }
}


.btn-industrial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber-primary), var(--amber-dark));
    color: var(--charcoal-dark);
    box-shadow: var(--shadow-industrial);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--amber-light), var(--amber-primary));
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--charcoal-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--amber-primary);
    border: 2px solid var(--amber-primary);
}

.btn-secondary:hover {
    background: var(--amber-primary);
    color: var(--charcoal-dark);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(45, 45, 68, 0.85) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, rgba(243, 156, 18, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(243, 156, 18, 0.03) 87.5%),
        linear-gradient(150deg, rgba(243, 156, 18, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(243, 156, 18, 0.03) 87.5%);
    background-size: 80px 140px;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--amber-primary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--off-white);
}

.hero-title span {
    background: linear-gradient(90deg, var(--amber-primary), var(--electric-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--concrete-gray);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--concrete-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.card-industrial {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
}

.card-industrial:hover {
    transform: translateY(-8px);
    border-color: var(--amber-primary);
    box-shadow: var(--shadow-card), 0 0 40px rgba(243, 156, 18, 0.15);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--amber-primary), var(--electric-orange));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--charcoal-dark);
}

.card-industrial h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--off-white);
}

.card-industrial p {
    color: var(--concrete-gray);
    margin-bottom: 20px;
}

.card-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--amber-primary);
}

.card-price span {
    font-size: 1rem;
    color: var(--concrete-gray);
    font-weight: 400;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}


.about-section {
    position: relative;
}

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

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.about-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--amber-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 24px;
    color: var(--off-white);
}

.about-content p {
    color: var(--concrete-gray);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(243, 156, 18, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--amber-primary);
}

.feature-item span {
    color: var(--off-white);
    font-weight: 500;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--amber-primary);
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 1.35rem;
    color: var(--off-white);
    margin-bottom: 4px;
}

.team-info p {
    color: var(--amber-primary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.team-info .bio {
    color: var(--concrete-gray);
    font-size: 0.9rem;
}


.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(20px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: var(--amber-primary);
}

.testimonial-card p {
    color: var(--off-white);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--amber-primary), var(--electric-orange));
}

.testimonial-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--off-white);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--concrete-gray);
}


.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--off-white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--amber-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--amber-primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--concrete-gray);
    line-height: 1.8;
}


.contact-section {
    position: relative;
}

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

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info-card {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(243, 156, 18, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--amber-primary);
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--concrete-gray);
}

.contact-details a {
    color: var(--concrete-gray);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--amber-primary);
}

.contact-form-wrapper {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--off-white);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--off-white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--amber-primary);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--concrete-gray);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}


.map-container {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-top: 24px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    border: none;
}


.cta-section {
    background: linear-gradient(135deg, var(--charcoal-medium) 0%, var(--charcoal-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-primary), var(--electric-orange));
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--off-white);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--concrete-gray);
    font-size: 1.15rem;
    margin-bottom: 36px;
}


.main-footer {
    background: var(--charcoal-dark);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: var(--concrete-gray);
    margin-top: 16px;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--amber-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--concrete-gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--amber-primary);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--concrete-gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--concrete-gray);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--amber-primary);
}


.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 450px;
    background: var(--glass-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(20px);
    z-index: 9999;
    box-shadow: var(--shadow-card);
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

.cookie-consent-banner h4 {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 12px;
}

.cookie-consent-banner p {
    color: var(--concrete-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--amber-primary), var(--amber-dark));
    color: var(--charcoal-dark);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, var(--amber-light), var(--amber-primary));
}

.cookie-btn-decline {
    background: transparent;
    color: var(--concrete-gray);
    border: 1px solid var(--glass-border);
}

.cookie-btn-decline:hover {
    border-color: var(--amber-primary);
    color: var(--amber-primary);
}


.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-primary), var(--electric-orange));
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--concrete-gray);
}

.breadcrumb span {
    color: var(--amber-primary);
}

.breadcrumb svg {
    width: 16px;
    height: 16px;
    color: var(--concrete-gray);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--off-white);
}

.page-header p {
    color: var(--concrete-gray);
    font-size: 1.15rem;
    margin-top: 16px;
    max-width: 600px;
}


.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.thank-you-content {
    max-width: 600px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--amber-primary), var(--electric-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    animation: scaleIn 0.5s ease;
}

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

.success-icon svg {
    width: 50px;
    height: 50px;
    color: var(--charcoal-dark);
}

.thank-you-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--off-white);
    margin-bottom: 20px;
}

.thank-you-content p {
    color: var(--concrete-gray);
    font-size: 1.15rem;
    margin-bottom: 32px;
}


.legal-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--off-white);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--concrete-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    color: var(--concrete-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}


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

.mb-4 {
    margin-bottom: 24px;
}

.mt-4 {
    margin-top: 24px;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--charcoal-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--amber-primary);
}


::selection {
    background: var(--amber-primary);
    color: var(--charcoal-dark);
}
