* {
    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: 9999;
    display: none;
}

.cookie-banner.active {
    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: 300px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
}

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

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

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

.ad-disclosure {
    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;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

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

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

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

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555555;
}

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

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
}

.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 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #d0d0d0;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #666666;
    margin: 0 20px 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 20px;
    display: block;
}

.select-service {
    margin: 0 20px 20px;
    padding: 12px 20px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.process-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-list {
    list-style: none;
    padding-left: 0;
}

.process-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555555;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-wrapper > p {
    margin-bottom: 35px;
    color: #666666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    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;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

    .nav {
        gap: 15px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }
}