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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #1a202c;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #63b3ed;
}

.ad-label {
    color: #a0aec0;
    font-size: 12px;
    padding: 4px 10px;
    background-color: #2d3748;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #4a5568;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.85), rgba(45, 55, 72, 0.75));
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 600px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.features-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.features-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
}

.feature-icon {
    width: 100%;
    height: 240px;
    background-color: #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.services-highlight-section {
    padding: 80px 20px;
    background-color: #edf2f7;
}

.services-highlight-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background-color: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

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

.service-details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.price-tag {
    display: inline-block;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
}

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

.contact-form-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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: #3182ce;
}

.btn-submit {
    width: 100%;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.trust-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2d3748;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: #718096;
    font-weight: 600;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 20px 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

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

.footer-col ul li a:hover {
    color: #63b3ed;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #a0aec0;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #718096;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #38a169;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2f855a;
}

.btn-reject {
    background-color: #718096;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4a5568;
}

.page-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #cbd5e0;
}

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

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5568;
}

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

.team-member {
    width: 280px;
    text-align: center;
}

.member-photo {
    width: 100%;
    height: 280px;
    background-color: #e2e8f0;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member p {
    font-size: 14px;
    color: #718096;
}

.services-detail-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-block {
    background-color: #f7fafc;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.service-price {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 20px;
}

.service-body p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #2d3748;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
}

.services-cta-section {
    padding: 80px 20px;
    background-color: #edf2f7;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-cta-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a5568;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-additional-section {
    padding: 60px 20px;
    background-color: #f7fafc;
}

.contact-additional-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-additional-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.map-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #718096;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f7fafc;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3748;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.thanks-content .cta-primary {
    margin-top: 30px;
}

.legal-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-section ul {
    margin: 16px 0 16px 30px;
    line-height: 1.8;
}

.legal-section ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-section a {
    color: #3182ce;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

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

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .about-split {
        flex-direction: column;
    }

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