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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #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: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background: #f8fafc;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-section {
    background: #1a202c;
    padding: 80px 40px;
}

.intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-size: 28px;
    color: #ffffff;
    line-height: 1.7;
    font-weight: 300;
}

.image-text-section {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.image-text-section img {
    width: 50%;
    object-fit: cover;
    background-color: #e2e8f0;
}

.text-content {
    width: 50%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 28px;
}

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

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

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-header-centered p {
    font-size: 20px;
    color: #4a5568;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 14px;
}

.service-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.narrow-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 32px;
}

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

.form-section {
    background: #1a202c;
    padding: 100px 40px;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    color: #cbd5e0;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

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

.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 ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

.submit-btn:hover {
    background: #2980b9;
}

.references-section {
    background: #f8fafc;
    padding: 60px 40px;
}

.references-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

.references-list {
    list-style-position: inside;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.9;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #a0aec0;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-btn.accept {
    background: #3498db;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #2980b9;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8fafc;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

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

.thanks-container .service-selected {
    font-weight: 600;
    color: #3498db;
}

.back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #2980b9;
}

.page-header {
    background: #1a202c;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

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

.content-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 48px;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-section li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.about-intro {
    background: #f8fafc;
    padding: 80px 40px;
    text-align: center;
}

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

.about-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

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

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

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e2e8f0;
}

.team-member h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.team-member .role {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.contact-info-section {
    background: #f8fafc;
    padding: 80px 40px;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-block {
    flex: 1;
}

.contact-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.contact-block p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detailed-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
}

.service-detailed-item:last-child {
    border-bottom: none;
}

.service-detailed-item h3 {
    font-size: 30px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.service-detailed-item .price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-detailed-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detailed-item ul {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .image-text-section {
        flex-direction: column;
    }

    .image-text-section img,
    .text-content {
        width: 100%;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

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

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