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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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-actions {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.navbar {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 300;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-image {
    flex: 1;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

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

.split-intro {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
}

.intro-image {
    flex: 1;
    background: #e8e8e8;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 300;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.services-showcase {
    padding: 100px 40px;
    background: #fafafa;
}

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    font-weight: 300;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #666;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #27ae60;
    margin: 20px 0;
}

.select-service {
    padding: 12px 32px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.approach-section {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 300;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.approach-image {
    flex: 1;
    background: #e8e8e8;
}

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

.contact-form-section {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-section p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 300;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.thanks-container .selected-service {
    font-size: 24px;
    font-weight: 500;
    color: #2c3e50;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
}

.page-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 300;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-container ul {
    margin: 20px 0 20px 30px;
}

.page-container li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

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

    .split-intro,
    .approach-section {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}