* {
    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: #2c3e50;
    color: #ffffff;
    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: 250px;
    font-size: 14px;
}

.cookie-actions {
    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: #27ae60;
    color: #ffffff;
}

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

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

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
}

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

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

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-cta {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-content {
    flex: 1;
    min-width: 300px;
}

.intro-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    background-color: #dfe6e9;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-highlight {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.services-highlight h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.service-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}

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

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

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

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-content img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 8px;
    background-color: #bdc3c7;
    object-fit: cover;
}

.trust-text {
    flex: 1;
    min-width: 300px;
}

.trust-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

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

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.location-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-section img {
    max-width: 1200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #bdc3c7;
    object-fit: cover;
}

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

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

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

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-col a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

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

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

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #dfe6e9;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.values-section h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

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

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

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

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

.team-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.team-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #dfe6e9;
    object-fit: cover;
}

.cta-section {
    background-color: #3498db;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.service-content ul li {
    font-size: 15px;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #dfe6e9;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 60px;
}

.pricing-note h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-note p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

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

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

.info-block h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.contact-image {
    flex: 1;
    min-width: 300px;
    background-color: #dfe6e9;
}

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

.contact-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 60px;
}

.contact-note h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-note p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-container h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.thanks-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
    color: #2c3e50;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
    }

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

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

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

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

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

    .service-block.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}