* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --text: #e8e8e8;
    --text-dark: #2d2d2d;
    --light: #f5f5f5;
    --border: #d4d4d4;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background: var(--primary);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: rgba(232, 232, 232, 0.7);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(232, 232, 232, 0.3);
    border-radius: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 5rem 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.35rem;
    color: rgba(232, 232, 232, 0.85);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text);
    color: var(--primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.section {
    padding: 8rem 0;
}

.section-alt {
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: #ffffff;
    padding: 3rem;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
}

.service-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
}

.about-image-wrapper {
    width: 100%;
    height: 500px;
    background: var(--border);
    overflow: hidden;
}

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

.form-section {
    background: var(--primary);
    padding: 8rem 0;
}

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

.form-wrapper h2 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 3rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(232, 232, 232, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--text);
    color: var(--primary);
    border: none;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
}

.legal-content p,
.legal-content li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

footer {
    background: var(--primary);
    color: var(--text);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    color: rgba(232, 232, 232, 0.7);
    line-height: 1.8;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 232, 232, 0.1);
    color: rgba(232, 232, 232, 0.5);
    font-size: 0.9rem;
}

.disclaimer {
    background: #fffbf0;
    border-left: 3px solid #f0ad4e;
    padding: 2rem;
    margin: 4rem 0;
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--text);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--text);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--text);
    color: var(--primary);
}

.cookie-reject {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.thanks-content {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.thanks-box h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}