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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    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-actions {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #4CAF50;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.intro-section {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

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

.intro-visual {
    flex: 0 0 450px;
    background-color: #f5f5f5;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.insight-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 60px;
    margin: 0 auto;
}

.insight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.insight-wrapper h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.insight-wrapper p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.ref-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.ref-link:hover {
    opacity: 0.8;
}

.services-showcase {
    padding: 100px 60px;
    background-color: #fafafa;
}

.services-showcase h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 25px 20px;
    line-height: 1.6;
    flex: 1;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 25px 20px;
    display: block;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #4CAF50;
}

.testimonial-flow {
    padding: 80px 60px;
    background-color: #2c2c2c;
    color: white;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-item p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #bbb;
    display: block;
}

.form-section {
    padding: 100px 60px;
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.service-display {
    background-color: #f0f0f0;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

.service-display.selected {
    background-color: #4CAF50;
    color: white;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #4CAF50;
}

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

.submit-btn:hover {
    background-color: #45a049;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-elements {
    padding: 80px 60px;
    background-color: #fafafa;
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.disclaimer-section {
    padding: 60px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 60px 30px;
}

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: #4CAF50;
}

.ref-item {
    font-size: 13px;
    line-height: 1.6;
}

.ref-item a {
    color: #4CAF50;
    text-decoration: none;
}

.ref-item a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 30px;
    }

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

    .intro-section {
        flex-direction: column;
        padding: 60px 40px;
    }

    .intro-visual {
        flex: 0 0 auto;
        width: 100%;
    }

    .trust-grid {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        top: 20px;
        border-radius: 12px;
    }

    .nav-links {
        gap: 15px;
    }

    .ad-disclosure {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 10px;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

    .intro-section {
        padding: 40px 20px;
    }

    .intro-content h2 {
        font-size: 28px;
    }

    .services-showcase {
        padding: 60px 20px;
    }

    .services-showcase h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .form-section {
        padding: 60px 20px;
    }

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