* {
    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;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    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);
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

.main-nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

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

.main-nav a:hover {
    color: #e74c3c;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

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

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

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    max-width: 500px;
}

.hero-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.features-split {
    display: flex;
    align-items: center;
}

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

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

.feature-content {
    flex: 1;
    padding: 80px 60px;
}

.feature-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #e74c3c;
}

.feature-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.services-section {
    padding: 100px 20px;
    background-color: #fff;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.service-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 25px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

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

.cta-split {
    display: flex;
    align-items: center;
    background-color: #ecf0f1;
    padding: 60px;
    gap: 40px;
}

.cta-content {
    flex: 2;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 16px;
    color: #555;
}

.cta-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #7f8c8d;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

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

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

.service-display {
    padding: 15px;
    background-color: #ecf0f1;
    border-radius: 4px;
    font-weight: 600;
    color: #2c3e50;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

.footer-section ul li a:hover {
    color: #fff;
}

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

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info-left {
    flex: 1;
    padding: 60px;
    background-color: #2c3e50;
    color: #fff;
}

.contact-info-left h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.contact-info-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.contact-detail p {
    margin: 0;
    color: #bdc3c7;
}

.contact-form-right {
    flex: 1;
    padding: 60px;
    background-color: #ecf0f1;
}

.contact-form-right h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-hero {
    padding: 100px 20px;
    background-color: #ecf0f1;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    align-items: center;
}

.about-content-left {
    flex: 1;
    padding: 80px 60px;
}

.about-content-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.about-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.values-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.value-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.services-hero {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.services-list-section {
    padding: 80px 20px;
    background-color: #fff;
}

.legal-page {
    padding: 100px 20px;
    background-color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 15px 0 20px 30px;
}

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #ecf0f1;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

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

.checkmark {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-split,
    .features-split,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

    .hero-content-left,
    .feature-content,
    .contact-info-left,
    .contact-form-right,
    .about-content-left {
        padding: 40px 20px;
    }

    .hero-content-left h1,
    .about-hero h1 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

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

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-action {
        justify-content: center;
    }

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