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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #495057;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.hero-section {
    position: relative;
    width: 100%;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(76, 175, 80, 0.3));
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    color: #f8f9fa;
    font-size: 22px;
    max-width: 700px;
    line-height: 1.6;
}

.intro-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.feature-section {
    padding: 100px 40px;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #2c3e50;
    color: #ffffff;
}

.bg-dark h2,
.bg-dark p,
.bg-dark a {
    color: #ffffff;
}

.feature-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 350px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #dee2e6;
}

.feature-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c3e50;
    font-weight: 700;
}

.feature-card p {
    padding: 0 24px 24px;
    color: #495057;
    line-height: 1.7;
}

.benefits-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    padding: 16px 0 16px 36px;
    position: relative;
    font-size: 18px;
    color: #495057;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 24px;
}

.benefits-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #4CAF50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: #6c757d;
}

.cta-button.secondary:hover {
    background-color: #5a6268;
}

.cta-button.large {
    padding: 20px 48px;
    font-size: 18px;
}

.science-section {
    padding: 100px 40px;
}

.science-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
}

.science-section p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.science-section a {
    color: #4CAF50;
    text-decoration: underline;
}

.testimonials-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 350px;
    max-width: 420px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

.service-selection-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #495057;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-selection-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 350px;
    max-width: 400px;
    background-color: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dee2e6;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    padding: 0 24px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
    padding: 0 24px;
    margin-bottom: 20px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #45a049;
}

.form-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

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

.order-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.order-form input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-text {
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: #856404;
}

.references-section {
    padding: 60px 40px;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    margin-bottom: 16px;
    line-height: 1.7;
}

.references-list a {
    color: #4CAF50;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4CAF50;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a5f7f;
    text-align: center;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.page-header {
    padding: 80px 40px;
    background: linear-gradient(135deg, #2c3e50, #4CAF50);
    text-align: center;
}

.header-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 800;
}

.header-content p {
    font-size: 22px;
    color: #ecf0f1;
}

.about-intro {
    padding: 100px 40px;
    background-color: #ffffff;
}

.about-intro .content-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.value-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #4CAF50;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.team-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.approach-section {
    padding: 100px 40px;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.commitment-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.commitment-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
}

.commitment-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.commitment-section .cta-button {
    margin-top: 32px;
}

.services-intro {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.detailed-services {
    background-color: #ffffff;
}

.service-detail {
    padding: 80px 40px;
    border-bottom: 1px solid #dee2e6;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.scientific-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #4CAF50;
    margin-top: 24px;
    font-size: 15px;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    max-height: 500px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 100px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
}

.contact-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.info-block {
    margin-bottom: 36px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #4CAF50;
    font-weight: 700;
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

.contact-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.how-to-reach {
    padding: 80px 40px;
}

.how-to-reach h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.how-to-reach p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.location-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.location-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.order-summary h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.order-summary p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.info-text {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.next-steps ol {
    list-style-position: inside;
}

.next-steps ol li {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    padding: 10px 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    padding: 80px 40px;
}

.additional-info h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

.legal-container a {
    color: #4CAF50;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #45a049;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #495057;
}

@media (max-width: 1024px) {
    .benefits-container,
    .about-intro .content-wrapper,
    .approach-container,
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail .content-wrapper,
    .service-detail.reverse .content-wrapper {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

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

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

    .page-header {
        padding: 60px 20px;
    }

    .header-content h1 {
        font-size: 36px;
    }

    .header-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .thanks-container {
        padding: 40px 24px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }

    .form-container {
        padding: 30px 24px;
    }
}