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

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

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

.main-nav {
    background-color: #1a1a2e;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
}

.ad-disclosure {
    font-size: 11px;
    color: #aaa;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffd700;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

.hero-image-container {
    position: relative;
    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(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

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

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffd700;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.intro-section {
    padding: 60px 0;
    background-color: white;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.intro-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 22px;
}

.intro-card p {
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ddd;
}

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.card-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 15px;
}

.select-service-btn {
    width: 100%;
    padding: 12px;
    background-color: #1a1a2e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background-color: #ffd700;
    color: #1a1a2e;
}

.cta-centered {
    text-align: center;
    margin-top: 40px;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a1a2e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

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

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

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

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.trust-section {
    padding: 60px 0;
    background-color: #1a1a2e;
    color: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.trust-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.trust-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 15px;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffd700;
}

.trust-card p {
    color: #ddd;
    line-height: 1.6;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-col p {
    color: #bbb;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

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

.services-detailed {
    padding: 60px 0;
    background-color: white;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-grid {
    display: flex;
    flex-wrap: wrap;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.price-highlight {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

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

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

.about-story {
    padding: 60px 0;
    background-color: white;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.values-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background-color: white;
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.approach-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.approach-image-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.approach-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.approach-steps {
    flex: 1;
    min-width: 300px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.step-number {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    min-width: 60px;
}

.step-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.experience-section {
    padding: 60px 0;
    background-color: #f0f2f5;
}

.experience-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.experience-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.exp-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.exp-label {
    font-size: 18px;
    color: #555;
}

.commitment-section {
    padding: 80px 0;
    background-color: white;
}

.commitment-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-wrapper h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.commitment-wrapper p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.commitment-wrapper .cta-button {
    margin-top: 30px;
}

.contact-content {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-section,
.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.contact-form-section p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.7;
}

.contact-info-card {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.contact-info-card p {
    color: #555;
    line-height: 1.7;
}

.email-text {
    color: #2c3e50;
    font-weight: 600;
}

.small-note {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.visit-section {
    padding: 60px 0;
    background-color: #f0f2f5;
}

.visit-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.visit-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.showroom-image {
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: white;
    min-height: 70vh;
}

.thanks-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-wrapper h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.thanks-info {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.next-steps {
    list-style: none;
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 18px;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #ffd700;
    color: #1a1a2e;
}

.btn-primary:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #1a1a2e;
    color: white;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.thanks-contact p {
    color: #666;
    font-size: 16px;
}

.legal-content {
    padding: 60px 0;
    background-color: white;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-wrapper p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

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

.legal-wrapper ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-wrapper a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-wrapper a:hover {
    color: #229954;
}

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

    .nav-menu {
        gap: 15px;
    }

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

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

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

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

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

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