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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #2ecc71;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
}

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);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 33px;
    z-index: 999;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

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

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

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

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: 80px 24px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
}

.hero-text-card {
    flex: 1;
}

.hero-text-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text-card p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-image-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

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

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

.intro-cards h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.cards-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    max-width: 380px;
}

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

.info-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.info-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: var(--primary-color);
}

.info-card p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 56px;
}

.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    max-width: 480px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 22px;
    color: var(--text-dark);
    flex: 1;
    margin-right: 16px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.select-service-btn:hover {
    background-color: #1e3a7a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-middle {
    background-color: var(--primary-color);
    padding: 80px 24px;
}

.cta-card-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.cta-card-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

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

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

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

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

.process-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

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

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

.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: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: var(--bg-white);
}

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

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

.submit-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 48px 0;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.cookie-btn.accept:hover {
    background-color: #27ae60;
}

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

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

.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a7a 100%);
    color: var(--bg-white);
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

.about-intro-card {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-intro-card img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

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

.values-section {
    background-color: var(--bg-light);
    padding: 60px 32px;
    border-radius: 12px;
    margin-bottom: 80px;
}

.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;
    justify-content: center;
}

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

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

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

.expertise-section {
    margin-bottom: 80px;
}

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

.expertise-content {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.expertise-text {
    flex: 1;
    min-width: 300px;
}

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

.expertise-content img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.approach-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-step {
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 28px 32px;
    border-radius: 8px;
}

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

.approach-step p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

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

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

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

.service-detail-card img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

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

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    margin: 24px 0 16px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 24px;
}

.service-detail-content ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.services-cta {
    background-color: var(--bg-light);
    padding: 80px 24px;
    text-align: center;
}

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

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

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

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

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

.contact-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.approach-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    max-width: 560px;
    box-shadow: var(--shadow-sm);
}

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

.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

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

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

.thanks-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: calc(100vh - 200px);
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

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

.thanks-message {
    margin-bottom: 48px;
}

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

.service-highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

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

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

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

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

.step-text p {
    color: var(--text-light);
    line-height: 1.6;
}

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

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

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

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

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

.thanks-note {
    background-color: #fff9e6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.thanks-note p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

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

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

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

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

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

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

.legal-content ul li,
.legal-content ol li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

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

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

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .info-card {
        max-width: 100%;
    }

    .service-cards-container {
        flex-direction: column;
    }

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

    .process-cards {
        flex-direction: column;
    }

    .form-container-card {
        padding: 32px 24px;
    }

    .about-intro-card,
    .expertise-content,
    .service-detail-card {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}