* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-accept, .cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #27ae60;
    color: white;
}

.cookie-accept:hover {
    background: #229954;
}

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 12px;
    background: #ecf0f1;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #1a472a;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.4), rgba(22, 160, 133, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 900px;
}

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 48px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
}

.intro-block {
    padding: 80px 40px;
    background: #ffffff;
}

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

.content-wrapper.narrow {
    max-width: 800px;
}

.content-wrapper.wide {
    max-width: 1400px;
}

.content-wrapper.center {
    text-align: center;
}

.intro-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
    color: #2c3e50;
}

.intro-block p {
    font-size: 19px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.feature-section {
    padding: 100px 40px;
}

.dark-bg {
    background: #1a2332;
    color: #ffffff;
}

.light-bg {
    background: #f8f9fa;
}

.feature-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: center;
    padding: 32px;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #bdc3c7;
}

.services-section {
    padding: 100px 40px;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-image {
    flex: 1;
    min-width: 400px;
    height: 320px;
    overflow: hidden;
    background-color: #34495e;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 32px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #229954;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #ecf0f1, #ffffff);
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.trust-section {
    padding: 100px 40px;
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    min-width: 200px;
}

.trust-number {
    font-size: 56px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 18px;
    color: #34495e;
}

.cta-section {
    padding: 100px 40px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #1a2332;
}

.main-footer {
    background: #1a1a1a;
    color: #bdc3c7;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: #27ae60;
}

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

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 12px;
}

.disclaimer {
    color: #7f8c8d;
    font-size: 12px !important;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
}

.selected-service {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.selected-service strong {
    color: #27ae60;
    font-size: 20px;
}

.about-hero {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #27ae60, #16a085);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-content {
    padding: 80px 40px;
}

.about-section {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.team-member-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #27ae60;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member .role {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
}

.services-hero {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.services-content {
    padding: 80px 40px;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #34495e;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content .price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 24px 0;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

.contact-hero {
    padding: 80px 40px 60px;
    background: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 20px;
    color: #7f8c8d;
}

.contact-content {
    padding: 80px 40px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #27ae60;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background: #ecf0f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 18px;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

.legal-content .last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

    .service-card {
        flex-direction: column !important;
    }

    .service-image {
        min-width: 100%;
        height: 280px;
    }

    .service-detail {
        flex-direction: column !important;
    }

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }
}

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

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

    .section-header h2 {
        font-size: 32px;
    }

    .intro-block h2 {
        font-size: 32px;
    }

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