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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

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

.hero-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 32px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.hero-content {
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

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

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

.intro-section {
    padding: 48px 0;
}

.intro-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.intro-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.card-icon {
    font-size: 48px;
    line-height: 1;
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 8px;
}

.card-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.card-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

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

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

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

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

.process-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-card {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

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

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

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

.cta-card-large {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 56px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card-large h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.cta-button-large {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.contact-form-section {
    padding: 64px 0;
    background-color: var(--bg-light);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.disclaimer-card {
    background-color: #fef3c7;
    border-left: 4px solid var(--accent-color);
    padding: 32px;
    border-radius: var(--radius-md);
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #92400e;
}

.disclaimer-card p {
    color: #78350f;
    font-size: 15px;
    line-height: 1.7;
}

.footer {
    background-color: #1e293b;
    color: var(--bg-white);
    padding: 56px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.footer-section p {
    color: #cbd5e1;
    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: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

.cookie-btn.reject {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 64px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

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

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

.about-card-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-lg);
}

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

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

.about-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

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

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

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

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

.expertise-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.expertise-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: center;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.highlight-icon {
    background-color: var(--success-color);
    color: var(--bg-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-item p {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

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

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

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.approach-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 12px;
}

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

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

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

.commitment-card {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.commitment-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.commitment-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.cta-inline:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.service-header {
    background: linear-gradient(135deg, #f1f5f9, var(--bg-light));
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.service-icon-large {
    font-size: 56px;
    line-height: 1;
}

.service-title-block h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.service-body {
    padding: 32px;
}

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

.service-body h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 8px;
}

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

.service-body ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.service-body ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.service-benefits {
    padding: 64px 0;
    background-color: var(--bg-light);
}

.service-benefits h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-block {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

.service-cta-section {
    padding: 64px 0;
    background-color: var(--bg-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 56px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-button-primary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.contact-info-section {
    padding: 48px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.info-block h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-image-card {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

.form-wrapper {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.form-wrapper > p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.location-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.location-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background-color: var(--bg-white);
    padding: 56px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.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: 48px;
    margin: 0 auto 24px;
}

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

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

.service-confirmation {
    margin-bottom: 32px;
}

.selected-service {
    background-color: var(--bg-light);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: var(--text-dark);
}

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

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

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

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

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

.step-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    padding-top: 4px;
}

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

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

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

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

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

.additional-info {
    padding: 48px 0;
    background-color: var(--bg-light);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    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 {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.last-updated {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 32px;
}

.cookie-table {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.cookie-table h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cookie-table p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-card {
        flex-direction: row;
    }

    .hero-content {
        flex: 1;
        padding: 64px 48px;
    }

    .hero-image {
        flex: 1;
        height: auto;
    }

    .cards-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 12px);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 10px);
    }

    .process-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-card {
        flex: 1 1 calc(50% - 12px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 10px);
    }

    .approach-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-card {
        flex: 1 1 calc(50% - 12px);
    }

    .benefits-layout {
        flex-direction: row;
    }

    .benefit-block {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }

    .contact-image-card {
        flex: 1;
        height: auto;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .about-card-main {
        flex-direction: row;
        align-items: center;
    }

    .about-content {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .expertise-layout {
        flex-direction: row;
        gap: 56px;
    }

    .expertise-text {
        flex: 1.2;
    }

    .expertise-highlights {
        flex: 1;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 16px);
    }

    .process-cards {
        flex-wrap: nowrap;
    }

    .process-card {
        flex: 1;
    }

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