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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --accent-color: #f59e0b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.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 {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #16a34a;
    transform: translateY(-1px);
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

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

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: #dbeafe;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

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

.intro-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 0 0 45%;
    background-color: #fef3c7;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 19px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 450px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
    background-color: #e0e7ff;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.btn-service {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.process-split {
    display: flex;
}

.process-content {
    flex: 1;
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.process-content h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
}

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

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.process-image {
    flex: 1;
    background-color: #fce7f3;
    overflow: hidden;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-container > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

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

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

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

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.email-display {
    color: #9ca3af;
    font-size: 14px;
    cursor: default;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 900px;
    margin: 15px auto 0;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

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

.story-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 0 0 45%;
    background-color: #ddd6fe;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.team-split {
    display: flex;
    background-color: var(--bg-white);
}

.team-image {
    flex: 1;
    background-color: #bfdbfe;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    padding: 100px 60px;
}

.team-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.approach-content > p {
    font-size: 19px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.approach-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.cta-about {
    padding: 100px 60px;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: white;
}

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

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

.cta-about .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e0f2fe;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-pricing .btn-service {
    width: auto;
    padding: 14px 32px;
}

.packages-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.packages-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.packages-section > p {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.packages-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.package-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

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

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.package-card > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-card ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.package-price {
    text-align: center;
    margin-bottom: 24px;
}

.original-price {
    display: block;
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.discounted-price {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-content {
    padding: 60px 60px 40px;
    background-color: var(--bg-white);
}

.contact-info {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.detail-item {
    flex: 1;
    min-width: 250px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.detail-item .note {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 8px;
}

.contact-map {
    padding: 60px 60px;
    background-color: var(--bg-light);
}

.map-placeholder {
    max-width: 1100px;
    margin: 0 auto;
    height: 400px;
    background-color: #cbd5e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
}

.map-overlay p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.thanks-content {
    padding: 100px 60px;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 8px;
}

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

.legal-content {
    padding: 60px 60px 100px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

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

.legal-container a:hover {
    color: var(--primary-dark);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .story-split,
    .team-split,
    .process-split,
    .service-detail {
        flex-direction: column;
    }

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

    .hero-content,
    .process-content {
        padding: 60px 40px;
    }

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

    .services-grid {
        gap: 30px;
    }

    .service-card {
        min-width: 100%;
    }

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

    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .ad-disclosure {
        position: absolute;
        top: 80px;
        right: 30px;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .section-header-center h2,
    .page-hero h1 {
        font-size: 32px;
    }

    .intro-text h2,
    .story-text h2 {
        font-size: 28px;
    }

    .intro-section,
    .about-story,
    .services-preview,
    .values-section,
    .approach-section,
    .cta-about,
    .packages-section,
    .contact-content,
    .contact-map,
    .faq-section {
        padding: 60px 30px;
    }

    .intro-split,
    .story-split {
        gap: 40px;
    }

    .service-detail {
        gap: 30px;
        margin-bottom: 60px;
    }

    .values-grid,
    .approach-benefits,
    .contact-details,
    .faq-grid {
        gap: 20px;
    }

    .value-card,
    .benefit-item,
    .faq-item {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .thanks-container {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: start;
    }
}