* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #7f8c8d;
    --dark-gray: #2c3e50;
    --border-color: #e1e8ed;
    --success-color: #4CAF50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--light-bg);
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.intro-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.split-image,
.split-text {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.split-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.2;
}

.split-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.services-preview {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 20px;
    color: var(--gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.btn-service {
    width: 100%;
    padding: 14px 30px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 0;
}

.process-steps {
    margin-top: 30px;
}

.step {
    margin-bottom: 35px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
}

.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
    padding: 80px 60px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.form-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
    color: var(--gray);
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    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: var(--accent-color);
}

.btn-submit {
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.gallery-section {
    padding: 100px 0;
}

.gallery-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1 1 calc(25% - 15px);
    min-width: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.main-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    color: var(--white);
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.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;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-accept {
    background: var(--success-color);
    color: var(--white);
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-gray);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.about-intro {
    padding: 100px 0;
}

.values-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
}

.approach-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.approach-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.approach-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.service-detail-item {
    padding: 60px 0;
}

.service-detail-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-text,
.service-detail-image {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-detail-text > p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 25px 0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 35px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 0;
}

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

.contact-info-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.contact-text-section {
    padding: 60px 0;
}

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

.contact-text-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-text-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.map-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.map-placeholder {
    background: var(--white);
    padding: 80px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--gray);
}

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

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

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 40px;
}

.thanks-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

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

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 16px 40px;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

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

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-left {
        padding: 40px 30px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .gallery-item {
        flex: 1 1 calc(50% - 10px);
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }
}

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

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

    .section-header-center h2 {
        font-size: 36px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

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

    .gallery-item {
        flex: 1 1 100%;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .sticky-btn {
        padding: 14px 25px;
        font-size: 14px;
    }
}
