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

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

.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-color: #2ecc71;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #34495e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

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

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

.ad-disclosure {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.hero-text p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

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

.cta-secondary {
    display: inline-block;
    background-color: #2ecc71;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.why-us-split {
    display: flex;
}

.why-left {
    flex: 1;
    background-color: #34495e;
}

.why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.why-right h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item h3 {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 12px;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.8;
}

.services-showcase {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    padding: 24px 24px 12px;
}

.service-card p {
    color: #7f8c8d;
    padding: 0 24px 16px;
    line-height: 1.7;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    padding: 0 24px 16px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

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

.form-intro p {
    font-size: 16px;
    color: #7f8c8d;
}

.main-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.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 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-indicators {
    padding: 80px 20px;
    background-color: #34495e;
}

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

.trust-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

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

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

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

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

.about-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 100px 20px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.story-split {
    display: flex;
    background-color: #ffffff;
}

.story-left {
    flex: 1;
    padding: 80px 60px;
}

.story-left h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 32px;
}

.story-left p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.value-card p {
    color: #7f8c8d;
    line-height: 1.8;
}

.team-split {
    display: flex;
}

.team-left {
    flex: 1;
    background-color: #34495e;
}

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

.team-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.team-right h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.team-right p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

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

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: #ecf0f1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-item h3 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.step-item p {
    color: #7f8c8d;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.services-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.service-detail-split {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 60px;
}

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

.service-detail-left {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-detail-right {
    flex: 1;
    padding: 60px;
}

.service-detail-right h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.service-detail-right p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-right ul li {
    color: #7f8c8d;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.service-detail-right ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.price-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    color: #e74c3c;
    font-weight: 700;
}

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

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

.materials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.material-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.material-card h3 {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 16px;
}

.material-card p {
    color: #7f8c8d;
    line-height: 1.8;
}

.cta-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-services p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.contact-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 100px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.contact-split {
    display: flex;
    background-color: #ffffff;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 12px;
}

.info-block p {
    color: #7f8c8d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

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

.faq-item {
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 16px;
}

.faq-item p {
    color: #7f8c8d;
    line-height: 1.8;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-content p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 24px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.thanks-info p {
    margin-bottom: 12px;
}

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

#selectedServiceInfo {
    font-weight: 600;
    color: #3498db;
}

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

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

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-content h2 {
    font-size: 28px;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.legal-content p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-split,
    .why-us-split,
    .story-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .why-left,
    .why-right,
    .story-left,
    .story-right,
    .team-left,
    .team-right,
    .service-detail-left,
    .service-detail-right {
        padding: 40px 20px;
    }

    .hero-text h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

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

    .stats-row {
        flex-direction: column;
    }

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

    .value-card,
    .step-item,
    .material-card {
        flex: 1 1 100%;
    }

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