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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 30px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
}

.intro-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 30px;
    background-color: white;
}

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

.service-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 24px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 15px;
    color: #666;
    font-size: 16px;
}

.service-card .price {
    display: block;
    padding: 15px 25px 25px;
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
}

.value-section {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.full-services-section {
    padding: 100px 30px;
    background-color: white;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background-color: #f8f9fa;
    padding: 35px;
    border-left: 5px solid #3498db;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.service-item:hover {
    border-color: #27ae60;
}

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

.service-item p {
    color: #666;
    font-size: 17px;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
}

.form-section {
    padding: 100px 30px;
    background-color: #2c3e50;
    color: white;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #ecf0f1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: white;
    color: #2c3e50;
}

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

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

.trust-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

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

.testimonial {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 30px;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-info p {
    margin-bottom: 10px;
    color: #ecf0f1;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
    }

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

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

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