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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #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 {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #28a745;
    color: #fff;
}

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

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

.btn-reject:hover {
    background: #5a6268;
}

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

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

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

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-section {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 580px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.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;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-block;
    background: #d35400;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #a04000;
}

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: center;
}

.features-alt {
    padding: 70px 20px;
    background: #ffffff;
}

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

.feature-card-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.feature-image {
    width: 50%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.feature-text {
    width: 50%;
}

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.container-standard {
    max-width: 1300px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.service-box {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 15px);
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
}

.service-box h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-box p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.price-tag {
    padding: 0 25px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #d35400;
}

.select-service-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.trust-section {
    background: #ecf0f1;
    padding: 70px 20px;
}

.trust-section blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: #2c2c2c;
    border-left: 4px solid #d35400;
    padding-left: 30px;
    margin: 0;
}

.trust-section cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
}

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

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

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

.submit-btn {
    padding: 15px;
    background: #d35400;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #a04000;
}

.why-choose {
    background: #f8f9fa;
    padding: 80px 20px;
}

.why-choose h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.reason-item {
    flex: 1;
    max-width: 350px;
}

.reason-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

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

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    font-style: italic;
    max-width: 900px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.thanks-page {
    padding: 100px 20px;
    text-align: center;
    min-height: 60vh;
}

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

.thanks-page p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-page .service-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 30px auto;
}

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

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.thanks-page a:hover {
    background: #2980b9;
}

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

    .main-nav {
        gap: 20px;
    }

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

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

    .feature-card-left {
        flex-direction: column;
    }

    .feature-image,
    .feature-text {
        width: 100%;
    }

    .service-box {
        width: 100%;
    }

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

    .container-footer {
        flex-direction: column;
        gap: 30px;
    }
}
