* {
    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-color: #ffffff;
}

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

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

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

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

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

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

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

.btn-reject:hover {
    background-color: #7f8c8d;
}

.ad-disclosure {
    background-color: #fef9e7;
    border-bottom: 1px solid #f4d03f;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #7d6608;
}

.main-nav {
    background-color: #2c3e50;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 22px 25px;
    display: block;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: #34495e;
}

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

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

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

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #4a5568;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.split-intro {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.split-image-left {
    flex: 1;
    overflow: hidden;
}

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

.split-content-right {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.split-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.services-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #1a252f;
}

.service-card p {
    padding: 0 25px 15px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

.service-card .price {
    padding: 10px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    width: calc(100% - 50px);
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.split-content-left {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: white;
}

.split-content-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.split-content-left p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #ecf0f1;
}

.split-form-right {
    flex: 1;
    padding: 70px 60px;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 60px;
    background-color: #34495e;
    color: white;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #ecf0f1;
}

.disclaimer-section {
    padding: 50px 60px;
    background-color: #fff8e1;
    border-top: 3px solid #ffd54f;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #5d4037;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

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

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

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

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

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

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

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

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

.about-hero {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #ecf0f1;
}

.about-content-section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-content-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-list-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.services-list-section h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a252f;
}

.contact-page {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a252f;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a252f;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-info strong {
    color: #2c3e50;
}

.thanks-page {
    padding: 120px 60px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-page h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thanks-page a:hover {
    background-color: #2980b9;
}

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

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

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

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

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

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

    .hero-content,
    .split-content-right,
    .split-content-left,
    .split-form-right {
        padding: 50px 30px;
    }

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

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

    .nav-menu {
        flex-wrap: wrap;
    }
}

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

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

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