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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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: 250px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero-split {
    background: #f8f9fa;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.intro-section {
    padding: 100px 20px;
    background: white;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.benefit-cards {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

.benefit-cards h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

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

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

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

.services-section {
    padding: 100px 20px;
    background: white;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.service-details {
    flex: 1;
}

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

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.btn-select {
    padding: 12px 28px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-select.selected {
    background: #27ae60;
}

.form-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.testimonial-section {
    padding: 100px 20px;
    background: white;
}

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

.testimonial-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

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

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

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

.sticky-btn {
    display: block;
    background: #27ae60;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5);
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.about-story {
    padding: 100px 20px;
    background: white;
}

.mission-section {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

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

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.mission-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.values-section {
    padding: 100px 20px;
    background: white;
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
}

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

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

.team-section {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

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

.team-member p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

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

.service-image-large {
    flex: 1;
}

.service-image-large img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-content {
    flex: 1;
}

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

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

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-content h3 {
    font-size: 20px;
    margin: 28px 0 16px;
    color: #2c3e50;
}

.service-content ul {
    margin-left: 20px;
    margin-bottom: 28px;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 12px 32px;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.process-section {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

.process-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

.contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.contact-item a {
    color: #3498db;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.legal-page {
    padding: 80px 20px;
    background: white;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

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

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

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.service-confirmation {
    font-size: 17px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
}

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

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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

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

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

    .page-hero p {
        font-size: 18px;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

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

    .split-text h2,
    .mission-content h2,
    .values-section h2,
    .team-intro h2,
    .cta-section h2,
    .services-section h2 {
        font-size: 32px;
    }

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

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