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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --accent: #f97316;
    --light: #f8fafc;
    --gray: #64748b;
    --border: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--secondary);
    background: #ffffff;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--gray);
    padding: 4px 10px;
    background: var(--light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 85vh;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    background-color: var(--light);
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 120px 0;
}

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
}

.split-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    background-color: var(--light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 80px 0;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 20px;
}

.price-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

.form-section {
    background: var(--light);
    padding: 100px 0;
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 36px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.submit-btn {
    width: 100%;
    margin-top: 12px;
}

footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 28px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin-bottom: 8px;
}

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

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

.cookie-buttons button {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

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

.cookie-reject:hover {
    background: white;
    color: var(--secondary);
}

.page-header {
    background: var(--secondary);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #94a3b8;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--gray);
}

.page-content ul, .page-content ol {
    margin: 20px 0 20px 24px;
    color: var(--gray);
}

.page-content li {
    margin-bottom: 12px;
}

.contact-split {
    display: flex;
    gap: 80px;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 32px;
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.info-item p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

.contact-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    background-color: var(--light);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.thanks-box h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary);
}

.thanks-box p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-intro {
    background: var(--light);
    padding: 100px 0;
}

.about-intro .split-section {
    padding: 0;
}

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .footer-content,
    .contact-split,
    .cookie-content {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 20px;
    }

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