* {
    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: #333;
    background-color: #f8f9fa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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: 300px;
    margin: 0;
}

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

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

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

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

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

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

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

.navbar {
    padding: 0;
}

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

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

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

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
    cursor: pointer;
    font-size: 16px;
}

.cta-button-secondary:hover {
    background-color: #3498db;
    color: white;
}

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

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

.intro-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.services-grid {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

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

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

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

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

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

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

.form-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

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

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

.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: 14px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 15px;
    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;
}

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

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

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

.trust-card {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.trust-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    padding: 60px 20px;
}

.about-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-image {
    flex: 1 1 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1 1 400px;
}

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

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

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

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

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

.process-step {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-right: 70px;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.experience-section {
    margin-bottom: 60px;
}

.experience-section h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    flex: 1 1 200px;
    max-width: 250px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.cta-card {
    background-color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.cta-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.services-detail {
    padding: 60px 20px;
}

.service-detail-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
}

.service-header h2 {
    font-size: 32px;
    color: #2c3e50;
}

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

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

.service-image {
    flex: 1 1 400px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-description {
    flex: 1 1 400px;
}

.service-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-description h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-description ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-description ul li {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-cta {
    background-color: #ecf0f1;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
}

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

.service-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.contact-section {
    padding: 60px 20px;
}

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

.contact-info-card,
.contact-map-card {
    flex: 1 1 400px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2,
.contact-map-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-note {
    background-color: #fff3cd;
    padding: 20px;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    margin-top: 20px;
}

.contact-note strong {
    color: #856404;
}

.contact-additional {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-additional h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.contact-additional a {
    color: #3498db;
    text-decoration: none;
}

.contact-additional a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

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

.thanks-details p {
    font-size: 16px;
    color: #2e7d32;
    margin: 0;
}

.thanks-info h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

.legal-section {
    padding: 60px 20px;
    background-color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
}

.cookie-table td {
    padding: 12px 15px;
    border: 1px solid #ecf0f1;
    font-size: 15px;
    color: #555;
}

.cookie-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .section-title {
        font-size: 28px;
    }

    .intro-card h2 {
        font-size: 28px;
    }

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

    .trust-item,
    .value-card,
    .process-step,
    .stat-card {
        flex: 1 1 100%;
    }

    .about-card {
        padding: 25px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-content {
        padding: 30px 20px;
    }

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

@media (max-width: 480px) {
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 24px;
    }

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

    .thanks-actions .cta-button,
    .thanks-actions .cta-button-secondary {
        width: 100%;
    }
}