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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #1a3d31;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f8f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2c5f4f;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    flex: 1 1 300px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
}

.main-nav {
    flex: 0 1 auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.hero-magazine {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--text-dark);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 0;
}

.hero-text {
    max-width: 700px;
}

.hero-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 20px;
    color: var(--bg-light);
    line-height: 1.6;
}

.intro-editorial {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.editorial-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.editorial-main {
    flex: 2 1 600px;
}

.editorial-main h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.4;
}

.editorial-main p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.editorial-sidebar {
    flex: 1 1 320px;
}

.sidebar-card {
    background-color: var(--bg-white);
    padding: 0;
    border: 1px solid var(--border-color);
}

.sidebar-card img {
    width: 100%;
    height: 400px;
    display: block;
}

.sidebar-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 25px 25px 15px 25px;
}

.sidebar-card p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0 25px 25px 25px;
}

.services-showcase {
    padding: 100px 0;
}

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

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-large {
    flex: 1 1 100%;
    display: flex;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card-large .service-image {
    flex: 0 0 45%;
    background-color: var(--text-light);
}

.service-card-large .service-image img {
    width: 100%;
    height: 100%;
}

.service-card-large .service-content {
    flex: 1;
    padding: 40px;
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.service-card-medium .service-image {
    height: 280px;
    overflow: hidden;
    background-color: var(--text-light);
}

.service-card-medium .service-image img {
    width: 100%;
    height: 100%;
}

.service-card-medium .service-content {
    padding: 30px;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.service-card-small .service-content {
    padding: 35px;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: var(--secondary-color);
}

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

.philosophy-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    flex: 1 1 45%;
    background-color: var(--text-light);
}

.philosophy-image img {
    width: 100%;
    height: 600px;
}

.philosophy-text {
    flex: 1 1 55%;
}

.philosophy-text h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.philosophy-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-inline h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: var(--bg-white);
    padding: 40px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--bg-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-primary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

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

.btn-cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    padding: 14px 38px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-left: 20px;
    transition: background-color 0.3s;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-buttons {
    margin-top: 30px;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.service-form {
    background-color: var(--bg-light);
    padding: 50px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    color: var(--bg-light);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    padding: 25px 0;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: var(--bg-light);
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-light);
    border: 1px solid var(--bg-light);
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 80px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
}

.about-content {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 60px;
}

.about-main-text {
    flex: 2 1 700px;
}

.about-main-text h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-main-text h3:first-child {
    margin-top: 0;
}

.about-main-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-sidebar {
    flex: 1 1 350px;
}

.about-image-card {
    margin-bottom: 30px;
    background-color: var(--text-light);
}

.about-image-card img {
    width: 100%;
    height: 400px;
}

.stats-card {
    background-color: var(--bg-light);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.stats-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.6;
}

.stats-list strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

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

.team-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.team-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(33.333% - 34px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.member-image {
    height: 350px;
    overflow: hidden;
    background-color: var(--text-light);
}

.member-image img {
    width: 100%;
    height: 100%;
}

.member-info {
    padding: 30px;
}

.member-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.member-role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.values-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.values-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.value-block h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background-color: var(--bg-light);
    padding: 50px;
    border: 1px solid var(--border-color);
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-detail-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 16px;
    color: var(--text-medium);
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.service-features li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.service-detail-image {
    flex: 1 1 45%;
    background-color: var(--text-light);
}

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

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1 1 50%;
}

.contact-info-block h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.email-text {
    font-weight: 600;
    color: var(--text-dark);
}

.email-note,
.schedule-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-image-block {
    flex: 1 1 50%;
    background-color: var(--text-light);
}

.contact-image-block img {
    width: 100%;
    height: 600px;
}

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

.location-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.location-info {
    max-width: 900px;
}

.location-text h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.location-text h4:first-child {
    margin-top: 0;
}

.location-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.faq-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--accent-color);
}

.faq-item h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

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

.thanks-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.next-steps h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.steps-list {
    list-style-position: inside;
    font-size: 17px;
    color: var(--text-medium);
    line-height: 2;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.thanks-note {
    background-color: #fff3cd;
    border: 1px solid #ffecb5;
    padding: 25px;
    text-align: left;
}

.thanks-note strong {
    color: var(--text-dark);
}

.thanks-note p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.alternative-contact {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.alternative-contact h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.contact-options {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.contact-option {
    flex: 0 1 350px;
    background-color: var(--bg-white);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-option h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-option p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.legal-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.gdpr-intro {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-medium);
}

@media (max-width: 968px) {
    .editorial-grid,
    .philosophy-layout,
    .about-layout,
    .contact-layout,
    .service-detail-layout {
        flex-direction: column;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-card-large .service-image {
        flex: 0 0 auto;
        height: 300px;
    }

    .service-card-medium,
    .service-card-small,
    .testimonial-card,
    .team-member,
    .value-block,
    .faq-item {
        flex: 1 1 100%;
    }

    .hero-text h2 {
        font-size: 32px;
    }

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

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

    .btn-cta-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

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

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

    .page-hero h2 {
        font-size: 32px;
    }

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

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