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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-cookie {
    background: #e67e22;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #d35400;
}

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

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

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #34495e;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

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

.intro-cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    color: #e67e22;
    margin-bottom: 20px;
}

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

.intro-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.section-header-offset {
    max-width: 700px;
    margin-bottom: 50px;
}

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

.section-header-offset p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

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

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

.service-image {
    flex: 0 0 45%;
    background-color: #ecf0f1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.btn-service {
    align-self: flex-start;
    padding: 12px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1a252f;
    transform: translateX(4px);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-header p {
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    padding: 14px 32px;
    background: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.trust-section {
    padding: 80px 0;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

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

.testimonial-author {
    font-weight: 600;
    color: #5a6c7d;
}

.disclaimer-section {
    padding: 60px 0;
    background: #ecf0f1;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.disclaimer-content p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 15px;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

.footer-col a:hover {
    color: #e67e22;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

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

.about-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

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

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

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

.team-member {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.team-member-image {
    width: 100%;
    height: 300px;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.team-member-info {
    padding: 25px;
}

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

.team-member-role {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member-info p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
}

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

.contact-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-page {
    padding: 80px 0;
}

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

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

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 30px;
    color: #5a6c7d;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.services-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #FA8BFF 0%, #2BD2FF 100%);
    color: #ffffff;
    text-align: center;
}

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

.services-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-service {
    background: #f8f9fa;
    padding: 20px 30px;
    border-radius: 8px;
    margin: 30px 0;
    display: inline-block;
}

.thanks-service strong {
    color: #e67e22;
}

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

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

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

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

    .service-image {
        flex: 0 0 300px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

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

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