* {
    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: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #2980b9;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-left p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2980b9;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #21618c;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.intro-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.intro-right {
    flex: 1;
}

.intro-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

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

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 20px;
    color: #666;
}

.service-item {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px;
    background-color: #fff;
}

.service-left,
.service-right {
    flex: 1;
}

.service-left {
    display: flex;
    align-items: stretch;
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

.service-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-right p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

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

.btn-service {
    padding: 14px 32px;
    background-color: #34495e;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

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

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.form-left {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left p {
    font-size: 18px;
    color: #555;
}

.form-right {
    flex: 1;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

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

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

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.trust-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.trust-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.trust-right {
    flex: 1;
}

.trust-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-left p {
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    gap: 24px;
}

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

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

.footer-disclaimer {
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.thanks-container p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #555;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #2980b9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #21618c;
}

.page-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 60px;
    background-color: #fff;
}

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

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

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

.page-container ul,
.page-container ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.page-container li {
    margin-bottom: 8px;
    color: #555;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

.contact-left {
    flex: 1;
    padding: 40px;
}

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

.contact-info {
    margin-bottom: 32px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #34495e;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 12px;
    color: #555;
}

.contact-right {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-item,
    .form-split,
    .trust-split,
    .footer-split,
    .contact-split {
        flex-direction: column;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

    .service-right,
    .intro-left,
    .trust-left,
    .form-left,
    .contact-left {
        padding: 40px 20px;
    }
}
