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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.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;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

.hero-image-right {
    flex: 1;
    background: #e8eef3;
    overflow: hidden;
}

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

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

.intro-image-left {
    flex: 1;
    background: #dce4eb;
    overflow: hidden;
}

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

.intro-content-right {
    flex: 1;
    padding: 60px 80px;
    background: #ffffff;
}

.intro-content-right h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-content-right p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-main {
    padding: 80px 40px;
    background: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background: #d5dce3;
    overflow: hidden;
}

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

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

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

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

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

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

.select-service-btn.selected {
    background: #27ae60;
}

.form-section {
    padding: 80px 40px;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.form-container-split {
    display: flex;
    gap: 60px;
}

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

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

.form-content-left p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 15px;
}

.selected-service-display {
    padding: 20px;
    background: #f0f7ff;
    border-left: 4px solid #3498db;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
}

.form-content-right {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
}

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

.thanks-container p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-service {
    display: inline-block;
    padding: 15px 30px;
    background: #e8f5e9;
    color: #27ae60;
    font-weight: 600;
    border-radius: 6px;
    margin: 20px 0;
}

.about-hero {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.about-section {
    margin-bottom: 60px;
}

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

.about-section p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

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

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

.contact-detail strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 18px;
    color: #555555;
}

.legal-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

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

.legal-container ul {
    margin: 20px 0;
    padding-left: 40px;
}

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

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

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}