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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #2563eb;
    color: #fff;
}

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

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

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

.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

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

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

.intro-section {
    padding: 5rem 2rem;
    background: #fff;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}

.intro-visual {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
}

.services-preview {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    background: #e5e5e5;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
    font-size: 1rem;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.service-card .select-service {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-card .select-service:hover {
    background: #1d4ed8;
}

.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.main-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d1d5db;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e5e5e5;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #d1d5db;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

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

    .intro-wrapper {
        flex-direction: column;
    }

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

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

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

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}