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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

.main-header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.ad-notice {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

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

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

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

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

.hero-image-container 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(26, 26, 26, 0.85), rgba(52, 73, 94, 0.75));
    display: flex;
    align-items: center;
}

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

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 700px;
}

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

.intro-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.services-overview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #666;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 15px;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    margin: 0 20px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

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

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 30px;
    color: #666;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #27ae60;
    display: none;
}

.selected-service-display.show {
    display: block;
}

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

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
}

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

.trust-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #4a90e2;
}

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

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 80px 0;
    color: #ffffff;
    margin-bottom: 40px;
}

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

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-content,
.contact-content,
.services-detailed {
    padding: 40px 0;
}

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

.about-story img {
    flex: 0 0 45%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #bdc3c7;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.expertise-section {
    margin-bottom: 60px;
}

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

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

.expertise-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.expertise-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.values-section,
.team-section {
    margin-bottom: 60px;
}

.values-section h2,
.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-section p,
.team-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-child {
    border-bottom: none;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #2c3e50;
}

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

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #bdc3c7;
}

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

.pricing-detail {
    background-color: #f0f8ff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin-bottom: 20px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

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

.contact-detail {
    margin-bottom: 30px;
}

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

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.contact-detail .note {
    font-style: italic;
    color: #888;
    margin-top: 8px;
}

.locations-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.location-card {
    flex: 1 1 calc(50% - 13px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.location-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.location-card p {
    font-size: 15px;
    color: #666;
    margin: 5px 0;
}

.location-hours {
    margin-top: 15px;
    font-weight: 500;
    color: #888;
}

.contact-cta {
    background-color: #34495e;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #ecf0f1;
}

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

.cta-button:hover {
    background-color: #2980b9;
}

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

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

.success-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    font-weight: 500;
    color: #27ae60;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

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

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

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

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.legal-content {
    padding: 40px 0 80px;
}

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

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

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

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

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

.legal-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #888;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

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

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

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

    .intro-wrapper,
    .about-story,
    .service-detail-block {
        flex-direction: column;
    }

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

    .trust-item,
    .expertise-card,
    .location-card {
        flex: 1 1 100%;
    }

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

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