.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Reset & Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4a6741;
    color: white;
}

.cookie-btn.accept:hover {
    background: #5a7751;
}

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

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

/* Header */
.header {
    background: #4a6741;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    color: white;
    font-size: 1.8rem;
    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-size: 1.4rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #666;
    font-style: italic;
}

.btn-primary {
    background: #f4d03f;
    color: #333;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 3rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #f1c40f;
    transform: translateY(-0.2rem);
}

/* Thinking Space Section */
.thinking-space {
    background: #4a6741;
    color: white;
    padding: 6rem 0;
}

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

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

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

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

.thinking-text h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.thinking-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thinking-features {
    list-style: none;
    margin: 2rem 0;
}

.thinking-features li {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Inspiration Section */
.inspiration {
    background: #f4d03f;
    padding: 6rem 0;
    text-align: center;
}

.inspiration h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    line-height: 1.2;
}

.inspiration p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: white;
    padding: 6rem 0;
}

.features h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 5rem;
    color: #555;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 25rem;
    text-align: center;
}

.feature-number {
    font-size: 6rem;
    font-weight: 300;
    color: #f4d03f;
    margin-bottom: 2rem;
    line-height: 1;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    letter-spacing: 0.1rem;
    line-height: 1.3;
}

.feature-item p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
}

/* Action Section */
.action-section {
    background: #4a6741;
    color: white;
    padding: 6rem 0;
}

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

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

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

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

.action-text h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.action-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.goal-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 6rem 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    line-height: 1.2;
}

.contact-section p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-group input {
    width: 100%;
    padding: 1.5rem;
    border: 0.2rem solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.4rem;
    background: #f8f8f8;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4a6741;
}

.form-group input::placeholder {
    color: #999;
}

.btn-submit {
    background: #f4d03f;
    color: #333;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 3rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #f1c40f;
    transform: translateY(-0.2rem);
}

/* Success Page */
.success-section {
    background: white;
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
}

.success-title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #333;
    line-height: 1.2;
}

.success-content {
    max-width: 80rem;
    margin: 0 auto;
}

.success-intro {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #555;
}

.success-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #555;
}

.success-suggestion {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 4rem;
    color: #555;
}

.btn-return {
    background: transparent;
    color: #333;
    padding: 1.5rem 4rem;
    border: 0.2rem solid #333;
    border-radius: 3rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #4a6741;
    color: white;
    padding: 3rem 0;
}

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

.copyright {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-description,
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .thinking-content,
    .action-content {
        flex-direction: column;
    }
    
    .thinking-image,
    .action-image {
        order: -1;
        min-width: auto;
    }
    
    .thinking-text h2,
    .action-text h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .feature-item {
        min-width: auto;
    }
    
    .nav {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-btn {
        width: 20rem;
    }
    
    .btn-submit {
        font-size: 1.6rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .thinking-space,
    .action-section,
    .features,
    .contact-section {
        padding: 4rem 0;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .success-title {
        font-size: 2.4rem;
    }
}