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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f9fa;
}

.ad-notice {
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a2e;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 600px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a2e;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background-color: #1a1a2e;
    color: #ffffff;
}

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

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px 32px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a2e;
}

.intro-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.services-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-overview h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a2e;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a2e;
}

.service-content p {
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background-color: #2a2a3e;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a2e;
}

.form-intro {
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    width: 100%;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #2a2a3e;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 32px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    color: #b8b8b8;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #b8b8b8;
    font-size: 14px;
}

.disclaimer {
    margin-top: 16px;
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a2e;
}

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

.page-header {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.about-text p {
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.about-image {
    flex: 1;
    min-width: 320px;
    height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a2e;
}

.values-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 36px 28px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a2e;
}

.value-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.team-section p {
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.cta-section p {
    color: #5a5a5a;
    margin-bottom: 32px;
    font-size: 18px;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    height: 420px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.service-detail-content p {
    color: #5a5a5a;
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 17px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    color: #5a5a5a;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a2e;
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.contact-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.contact-cta p {
    color: #5a5a5a;
    margin-bottom: 32px;
    font-size: 18px;
}

.contact-page-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-info-cards {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px 32px;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.contact-info-card p {
    color: #5a5a5a;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #1a1a2e;
}

.small-note {
    font-size: 14px;
    margin-top: 12px;
    font-style: italic;
}

.contact-additional {
    max-width: 800px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.contact-additional p {
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #ffffff;
    min-height: 500px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #1a1a2e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.thanks-message {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.service-highlight {
    font-size: 16px;
    color: #2c2c2c;
}

.service-highlight strong {
    color: #1a1a2e;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-page p {
    color: #5a5a5a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

.legal-page ul li {
    color: #5a5a5a;
    margin-bottom: 8px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: #1a1a2e;
    border-bottom: 2px solid #ddd;
}

.cookie-table td {
    padding: 12px 14px;
    color: #5a5a5a;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .intro-grid,
    .services-cards,
    .values-cards {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-grid,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}