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

:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

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

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

.ad-notice {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-main {
    display: flex;
    gap: 32px;
}

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

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

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

.hero-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.hero-text {
    padding: 48px;
    text-align: center;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.card-grid-intro {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

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

.intro-card p {
    color: var(--text-medium);
    font-size: 16px;
}

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

.services-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

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

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

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

.btn-select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #4f46e5;
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    color: var(--text-medium);
    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);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

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

.btn-submit:hover {
    background-color: #4f46e5;
}

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

.why-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.why-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-medium);
    font-size: 15px;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

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

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

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

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

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: #d1d5db;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #4f46e5;
}

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

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

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

.about-hero-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.story-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
}

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

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

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

.approach-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

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

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

.approach-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.expertise-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.expertise-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 240px;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.expertise-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.expertise-card p {
    color: var(--text-medium);
    font-size: 14px;
}

.cta-about {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.cta-card-about {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.cta-card-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card-about p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

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

.services-hero-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.services-detailed {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

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

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

.service-features li {
    color: var(--text-medium);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
}

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

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

.service-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

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

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

.packages-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.package-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
}

.package-featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.package-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 15px;
}

.package-includes {
    list-style: none;
    margin-bottom: 24px;
}

.package-includes li {
    color: var(--text-medium);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
}

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

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

.package-save {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
}

.faq-services {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.faq-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 10px;
}

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

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

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

.contact-hero-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

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

.contact-info-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

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

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.contact-cta-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    margin-top: 32px;
}

.contact-cta-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 15px;
}

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

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

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

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.map-placeholder {
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    color: var(--text-medium);
    font-size: 18px;
    text-align: center;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
}

.thanks-card h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
}

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

.thanks-card p {
    color: var(--text-medium);
    margin-bottom: 32px;
    font-size: 15px;
}

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

.next-steps {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 240px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

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

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

.step-card p {
    color: var(--text-medium);
    font-size: 14px;
}

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

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

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

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

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

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

.legal-document h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-document ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-document ul li {
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .card-grid-intro {
        flex-direction: column;
    }

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

    .story-layout,
    .approach-layout,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .why-card,
    .value-card,
    .package-card,
    .step-card {
        flex: 1 1 100%;
    }

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

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

    .thanks-card {
        padding: 40px 24px;
    }

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