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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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: 15px;
}

.cookie-buttons button {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
    background: #27ae60;
    color: white;
}

.cookie-buttons button:first-child:hover {
    background: #229954;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-buttons button:last-child:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.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;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    margin-bottom: 20px;
    max-width: 900px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.content-wrapper.wide {
    max-width: 1400px;
}

section {
    padding: 80px 0;
}

.intro-section {
    background: #ffffff;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.feature-section {
    background: #2c3e50;
    color: white;
}

.dark-bg {
    background: #2c3e50;
    color: white;
}

.light-bg {
    background: #ecf0f1;
}

.feature-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.feature-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #34495e;
}

.feature-item h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
}

.feature-item p {
    padding: 0 25px 25px 25px;
    font-size: 16px;
    line-height: 1.6;
}

.story-section {
    background: #ffffff;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

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

.service-card button {
    width: 100%;
    padding: 14px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-card button:hover {
    background: #d35400;
}

.cta-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1a252f;
}

.form-section {
    background: #ffffff;
}

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

.form-section > .content-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #555;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

.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: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    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: #e67e22;
}

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

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

.disclaimer-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

.footer-section ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding: 20px 40px;
    border-top: 1px solid #333;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
}

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

.thanks-container p {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    max-width: 600px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.thanks-container a:hover {
    background: #1a252f;
}

.page-header {
    background: #2c3e50;
    color: white;
    padding: 80px 40px;
    text-align: center;
}

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

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: #34495e;
}

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

.page-content ul {
    margin: 20px 0 20px 40px;
}

.page-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

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

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

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.contact-info strong {
    color: #2c3e50;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 60px 0;
}

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

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

.service-detail-image {
    flex: 1;
    min-width: 350px;
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #bdc3c7;
}

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-detail-content .price {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.service-detail-content button {
    padding: 14px 35px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-detail-content button:hover {
    background: #d35400;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #bdc3c7;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #ecf0f1;
    border-radius: 8px;
}

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

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

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

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

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

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

    .feature-grid,
    .services-grid {
        flex-direction: column;
    }

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

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

    .about-intro {
        flex-direction: column;
    }

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