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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --secondary-color: #97c05c;
    --accent-color: #d4a373;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--bg-light);
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 60px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-dark);
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.intro-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
}

.content-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-right img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.split-content-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.services-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    height: 220px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

.service-card p {
    padding: 0 24px;
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 16px;
}

.price-tag {
    padding: 0 24px 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.link-cta {
    padding: 16px 24px;
    color: var(--primary-color);
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.link-cta:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.why-us-split {
    padding: 100px 0;
    background: var(--bg-white);
}

.feature-list {
    margin-top: 32px;
}

.feature-item {
    margin-bottom: 32px;
}

.feature-item strong {
    display: block;
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-item p {
    font-size: 17px;
    color: var(--text-light);
}

.testimonials {
    padding: 100px 0;
    background: var(--primary-dark);
    color: white;
}

.testimonials h2 {
    color: white;
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: 12px;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: var(--secondary-color);
}

.order-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.final-cta .cta-secondary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.final-cta .cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-values {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    flex: 0 1 calc(50% - 15px);
    min-width: 280px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 17px;
}

.about-team {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-process {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-process h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 0 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    font-size: 16px;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-list {
    margin: 24px 0;
    padding-left: 20px;
}

.service-list li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-info {
    margin: 32px 0;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-large {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.price-table-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.price-table-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 700;
}

.table-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.price-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: var(--bg-light);
}

.price-service {
    font-size: 17px;
    color: var(--text-dark);
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-card,
.contact-map {
    flex: 1;
}

.contact-card h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--primary-dark);
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item strong {
    display: block;
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-note {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

.contact-how-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-how-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-weight: 700;
}

.how-it-works {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.how-step {
    flex: 0 1 calc(25% - 23px);
    min-width: 240px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.how-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

.how-step p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-faq {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-faq h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    font-size: 17px;
    margin: 0;
}

.thanks-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-info p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.service-confirm {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next {
    margin: 32px 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-next ul {
    padding-left: 20px;
}

.thanks-next li {
    list-style: disc;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 32px 0;
}

.thanks-contact {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    list-style: disc;
    color: var(--text-dark);
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table th,
.cookies-table th {
    background: var(--primary-dark);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 700;
}

.gdpr-table td,
.cookies-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table tr:last-child td,
.cookies-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .split-content-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 16px 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .content-left h2,
    .service-detail-content h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 0 1 100%;
    }

    .value-card,
    .process-step,
    .how-step {
        flex: 0 1 100%;
    }

    .testimonial-card {
        flex: 0 1 100%;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .price-row {
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .page-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}