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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    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;
    margin: 0;
}

.cookie-actions {
    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: #27ae60;
    color: white;
}

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

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

.btn-reject:hover {
    background: white;
    color: #000;
}

.main-nav {
    background: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-disclosure {
    font-size: 12px;
    color: #95a5a6;
    font-style: italic;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
}

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #ecf0f1;
}

.hero-right {
    background-color: #34495e;
    position: relative;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    background: #3498db;
}

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

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

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    background-color: #bdc3c7;
}

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

.intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #2c3e50;
}

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

.values-section {
    background: #ecf0f1;
    padding: 80px 40px;
}

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

.value-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #666;
}

.services-split {
    padding: 100px 40px;
    background: white;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-card p {
    padding: 0 24px 12px;
    color: #555;
    font-size: 15px;
}

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

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

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

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

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

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 24px;
    font-size: 28px;
    color: #2c3e50;
}

.selected-service-display {
    background: #ecf0f1;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
}

.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: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.benefits-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

.benefits-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 12px 0 12px 32px;
    font-size: 18px;
    position: relative;
    color: #555;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.benefits-right {
    background-color: #bdc3c7;
}

.benefits-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-section {
    background: #2c3e50;
    padding: 80px 40px;
    color: white;
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 600;
}

.cta-split {
    display: flex;
    min-height: 400px;
}

.cta-content,
.cta-image {
    flex: 1;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #27ae60;
    color: white;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-image {
    background-color: #16a085;
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #7f8c8d;
}

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

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

.contact-left {
    background: #34495e;
    color: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h1 {
    font-size: 48px;
    margin-bottom: 32px;
}

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

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ecf0f1;
}

.contact-info-item p {
    font-size: 16px;
    color: #bdc3c7;
}

.contact-right {
    background-color: #2c3e50;
}

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

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

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

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

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

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

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

.about-right {
    background-color: #95a5a6;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-section {
    background: #ecf0f1;
    padding: 80px 40px;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    background: white;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member .role {
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 16px;
}

.team-member p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.services-hero {
    background: #27ae60;
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

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

.services-detail {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

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

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

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

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

.legal-page ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-align: center;
    padding: 40px;
}

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

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 22px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.thanks-content .btn-home:hover {
    transform: translateY(-2px);
}

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

    .values-container,
    .testimonial-grid,
    .team-grid {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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