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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.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;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    background-color: rgba(44, 62, 80, 0.7);
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 20px;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

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

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

.intro-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.info-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.info-card p {
    padding: 0 20px 20px;
    color: #7f8c8d;
}

.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid #3498db;
    background-color: #f0f8ff;
}

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

.service-header h3 {
    font-size: 24px;
    color: #2c3e50;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-card p {
    margin-bottom: 20px;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #7f8c8d;
}

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

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

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

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.author {
    display: block;
    font-weight: 600;
    color: #3498db;
}

.main-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.disclaimer {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.6;
}

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

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

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

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

.content-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.content-layout.reverse {
    flex-direction: row-reverse;
}

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

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.text-block p {
    margin-bottom: 15px;
    color: #7f8c8d;
    line-height: 1.8;
}

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

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

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

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.team-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-detail {
    padding: 80px 0;
}

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

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

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

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

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

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-info h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.service-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-info ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #7f8c8d;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-info p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    color: #7f8c8d;
    line-height: 1.8;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.additional-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 15px 35px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.next-steps {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #3498db;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.legal-content {
    padding: 60px 0;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #7f8c8d;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    margin-left: 25px;
    color: #7f8c8d;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.last-updated {
    color: #95a5a6;
    font-style: italic;
    margin-bottom: 30px;
}

.cookie-table {
    margin: 25px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .card-grid,
    .service-cards,
    .testimonial-grid,
    .team-grid,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}