.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Geologica', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-return {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.6rem;
}

.btn-primary {
    background-color: #8B4513;
    color: white;
}

.btn-primary:hover {
    background-color: #A0522D;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 0.2rem solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

.btn-return {
    background-color: #8B4513;
    color: white;
}

.btn-return:hover {
    background-color: #A0522D;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.cookie-popup.hidden {
    display: none;
}

.cookie-content {
    background-color: #3A3A3A;
    color: white;
    padding: 4rem;
    border-radius: 2rem;
    max-width: 80rem;
    width: 100%;
    text-align: left;
}

.cookie-content h2 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cookie-content p {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-btn {
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 5rem;
    font-family: 'Geologica', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.refuse {
    background-color: transparent;
    color: white;
    border: 0.2rem solid white;
}

.cookie-btn.refuse:hover {
    background-color: white;
    color: #3A3A3A;
}

.cookie-btn.accept {
    background-color: white;
    color: #3A3A3A;
}

.cookie-btn.accept:hover {
    background-color: #f0f0f0;
}

/* Header */
.header {
    background-color: #3A3A3A;
    padding: 1.5rem ;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-brand a {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ccc;
}

/* Hero Section */
.hero {
    background-color: #3A3A3A;
    color: white;
    padding: 6rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 30rem;
}

.hero-text h1 {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 30rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Solutions Section */
.solutions {
    padding: 8rem 0;
    background-color: #f8f8f8;
}

.solutions h2 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.solutions-intro {
    font-size: 1.8rem;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem auto;
    color: #666;
    line-height: 1.6;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.solution-card {
    flex: 1;
    min-width: 30rem;
    background-color: #3A3A3A;
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.solution-card img {
    width: 100%;
    height: 20rem;
    max-width: 14rem;
    object-fit: cover;
    border-radius: 0.8rem;
    margin-bottom: 2rem;
}

.solution-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.solution-card p {
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: 0.9;
}

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

/* Forward Thinking Section */
.forward-thinking {
    padding: 8rem 0;
    background-color: #3A3A3A;
    color: white;
}

.forward-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.forward-image {
    flex: 1;
    min-width: 30rem;
}

.forward-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.forward-text {
    flex: 1;
    min-width: 30rem;
}

.forward-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.forward-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Methodology Section */
.methodology {
    padding: 8rem 0;
    background-color: #f8f8f8;
}

.methodology h2 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
    color: #333;
}

.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 20rem;
    background-color: #3A3A3A;
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #8B4513;
}

.step h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.step p {
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Crisis Management Section */
.crisis-management {
    padding: 8rem 0;
    background-color: #3A3A3A;
    color: white;
}

.crisis-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.crisis-image {
    flex: 1;
    min-width: 30rem;
}

.crisis-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.crisis-text {
    flex: 1;
    min-width: 30rem;
}

.crisis-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.crisis-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Risk Management Section */
.risk-management {
    padding: 8rem 0;
    background-color: #f8f8f8;
}

.risk-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.risk-image {
    flex: 1;
    min-width: 30rem;
}

.risk-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.risk-text {
    flex: 1;
    min-width: 30rem;
}

.risk-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #333;
}

.risk-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: #3A3A3A;
    color: white;
}

.contact form {
    max-width: 60rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: none;
    border-radius: 0.8rem;
    font-family: 'Geologica', sans-serif;
    font-size: 1.6rem;
    background-color: white;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 0.3rem rgba(139, 69, 19, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

/* Success Page */
.success-main {
    padding: 8rem 0;
    background-color: #f8f8f8;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: left;
    max-width: 80rem;
}

.success-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    line-height: 1.2;
}

.success-content p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 4rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 4rem 0;
    border-top: 0.1rem solid #e0e0e0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #333;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 1.4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3.6rem;
    }
    
    .solutions-grid {
        flex-direction: column;
    }
    
    .solution-card {
        min-width: 100%;
    }
    
    .methodology-steps {
        flex-direction: column;
    }
    
    .step {
        min-width: 100%;
    }
    
    .forward-content,
    .crisis-content,
    .risk-content {
        flex-direction: column;
        text-align: center;
    }
    
    .forward-text h2,
    .crisis-text h2,
    .risk-text h2 {
        font-size: 3rem;
    }
    
    .cookie-content {
        padding: 3rem 2rem;
    }
    
    .cookie-content h2 {
        font-size: 3.6rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .success-content h1 {
        font-size: 3.6rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .solutions h2,
    .methodology h2 {
        font-size: 3rem;
    }
    
    .forward-text h2,
    .crisis-text h2,
    .risk-text h2 {
        font-size: 2.8rem;
    }
    
    .cookie-content h2 {
        font-size: 3.2rem;
    }
    
    .success-content h1 {
        font-size: 3.2rem;
    }
}