* {
    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: #2d3436;
    background-color: #ffffff;
}

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand .logo {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
}

.ad-notice {
    padding: 8px 16px;
    background-color: #fff3cd;
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: #856404;
    font-weight: 500;
}

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

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

.main-nav a:hover,
.main-nav a.active {
    color: #0984e3;
}

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

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

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

.btn-accept {
    background-color: #00b894;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #636e72;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4a5459;
}

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

.hero-image {
    width: 100%;
    height: 100%;
}

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

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

.hero-title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
}

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

.btn-primary:hover {
    background-color: #0770c7;
    transform: translateY(-2px);
}

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.intro-card p {
    color: #636e72;
    line-height: 1.7;
}

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

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #636e72;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background-color: #ffffff;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3436;
}

.service-content p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    color: #636e72;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

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

.btn-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #0984e3;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background-color: #0770c7;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #636e72;
    margin-bottom: 30px;
}

.order-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: #2d3436;
}

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

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

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

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

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

.process-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: #636e72;
    line-height: 1.7;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 12px;
}

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

.testimonial-author {
    font-weight: 600;
    color: #636e72;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0984e3, #6c5ce7);
}

.cta-content {
    text-align: center;
    color: #ffffff;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #0984e3;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.site-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

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

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

.disclaimer {
    background-color: #636e72;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.disclaimer p {
    color: #dfe6e9;
    font-size: 14px;
    line-height: 1.6;
}

.copyright {
    color: #b2bec3;
    font-size: 14px;
}

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

.page-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.page-subtitle {
    font-size: 20px;
    color: #ffffff;
}

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

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

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.content-block p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 17px;
}

.image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
}

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

.values-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border-radius: 12px;
}

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

.value-card p {
    color: #636e72;
    line-height: 1.7;
}

.cta-inline {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.cta-inline h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-inline p {
    margin-bottom: 25px;
}

.services-detail-section {
    padding: 80px 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    color: #636e72;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d3436;
}

.faq-item p {
    color: #636e72;
    line-height: 1.7;
}

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

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 50px;
}

.info-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d3436;
}

.info-block p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3436;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    padding: 10px 0;
    color: #636e72;
    position: relative;
    padding-left: 25px;
}

.contact-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0984e3;
    font-weight: bold;
    font-size: 20px;
}

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

.delivery-areas {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.area-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 12px;
}

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

.area-card p {
    color: #636e72;
    line-height: 1.7;
}

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

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

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

.thanks-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d3436;
}

.thanks-message {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 50px;
    line-height: 1.7;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

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

.step-item .step-number {
    width: 50px;
    height: 50px;
    background-color: #0984e3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    color: #636e72;
    line-height: 1.7;
}

.thanks-info {
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-info p {
    margin: 10px 0;
    font-size: 18px;
}

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

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

.btn-secondary:hover {
    background-color: #4a5459;
}

.thanks-contact {
    color: #636e72;
    font-size: 16px;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2d3436;
}

.legal-content p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #0984e3;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0770c7;
}

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

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

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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

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

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

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

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