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

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

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #ffffff;
    color: #2a2a2a;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 32px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-minimal {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 48px;
}

.hero-content-wrapper {
    margin-bottom: 80px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 32px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #666;
    max-width: 600px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.intro-statement {
    padding: 120px 48px;
    background: #f9f9f9;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
    color: #1a1a1a;
}

.services-preview {
    padding: 120px 48px;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.service-card {
    flex: 1;
    min-width: 350px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 32px 32px 16px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin: 0 32px 24px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 400;
    margin: 0 32px 24px;
    color: #1a1a1a;
}

.select-service-btn {
    margin: 0 32px 32px;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.select-service-btn.selected {
    background: #4a7c59;
}

.contact-form-section {
    padding: 120px 48px;
    background: #f9f9f9;
}

.contact-form-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 64px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background: #333;
}

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

.trust-indicators {
    padding: 120px 48px;
}

.indicator-grid {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.indicator {
    flex: 1;
    min-width: 300px;
}

.indicator h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.indicator p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 80px 48px;
    background: #f9f9f9;
}

.disclaimer-text {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 48px 32px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.footer-column h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    color: #999;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 24px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .large-text {
        font-size: 24px;
    }

    .section-heading {
        font-size: 36px;
    }

    .service-card {
        min-width: 100%;
    }
}