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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    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: 300px;
}

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

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

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

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

.btn-reject {
    background: #e74c3c;
    color: #fff;
}

.btn-reject:hover {
    background: #c0392b;
}

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

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #999;
    font-style: italic;
}

.hero-section {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 700px;
    padding: 40px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #ddd;
}

.values-section {
    padding: 100px 20px;
    background: #fff;
}

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

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

.values-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background: #ecf0f1;
    padding: 40px;
    border-left: 5px solid #3498db;
}

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

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

.services-preview {
    padding: 90px 20px;
    background: #2c3e50;
    color: #fff;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 50px;
}

.services-mosaic {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.service-block {
    flex: 1;
    min-width: 280px;
}

.service-visual {
    height: 320px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.service-overlay {
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.service-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-overlay .price {
    font-size: 18px;
    color: #f39c12;
    font-weight: 600;
}

.section-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
}

.process-section {
    padding: 90px 20px;
    background: #fff;
}

.process-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    border-radius: 8px;
    background: #ddd;
}

.process-steps {
    flex: 1;
}

.process-steps h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

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

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

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

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

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

.service-form {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

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

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

.disclaimer-text {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.thanks-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-box .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-box .btn-home:hover {
    background: #2980b9;
}

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

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

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

.service-item {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    align-items: center;
}

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

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

.service-image img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    background: #ddd;
}

.service-details {
    flex: 1;
}

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

.service-details .service-price {
    font-size: 24px;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.service-details ul {
    margin-top: 15px;
    padding-left: 20px;
}

.service-details ul li {
    margin-bottom: 8px;
    color: #666;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-block {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-block:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    background: #ddd;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .intro-grid,
    .process-layout,
    .about-block,
    .service-item {
        flex-direction: column;
    }

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

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