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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2e7ec8;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

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

.btn-accept:hover {
    background-color: #e67e22;
}

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

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

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

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.hero-right {
    flex: 1;
    background-color: var(--primary-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #e67e22;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.intro-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: var(--primary-color);
}

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

.service-price {
    padding: 0 24px 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-us-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.why-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-text h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 17px;
    color: var(--text-light);
    padding-left: 28px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.why-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

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

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

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

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 40px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

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

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

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #ccc;
    line-height: 2;
}

.footer-section a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 40px;
    text-align: center;
}

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

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

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

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

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 24px;
    color: var(--text-light);
}

.page-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

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

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

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.services-detail {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 32px;
}

.service-detail-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-detail-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 20px;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.about-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 120px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.thanks-container .service-name {
    font-weight: 700;
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .why-us-split,
    .about-split {
        flex-direction: column;
    }

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

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

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

    .nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

    .services-grid {
        gap: 24px;
    }

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

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