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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.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: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-right {
    flex: 1;
    background: #dfe6e9;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    background: #ecf0f1;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    background: #dfe6e9;
    height: 200px;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
}

.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #27ae60;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.why-us-section {
    padding: 100px 0;
    background: #ecf0f1;
}

.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 16px 0 16px 40px;
    font-size: 18px;
    color: #2c3e50;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 24px;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

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

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

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background: #ecf0f1;
    min-height: 400px;
}

.about-hero {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-section p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #2980b9;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 30px;
}

.legal-page ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

    .hero-left {
        padding: 40px 30px;
    }

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

    .hero-right {
        min-height: 300px;
    }

    .split-layout,
    .split-reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .section-title {
        font-size: 32px;
    }
}