* {
    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: #fff;
}

.hero-section {
    position: relative;
    height: 95vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.75) 0%, rgba(155, 89, 182, 0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.hero-cta {
    background: #fff;
    color: #e74c3c;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.97);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.ad-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

.image-text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 2rem;
}

.section-image-wrap {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 3rem;
    position: relative;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.section-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.text-overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    padding: 3rem 2rem 2rem;
    color: #fff;
}

.text-overlay-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.text-overlay-box p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.story-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.story-section h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.inline-image-wrap {
    margin: 3rem 0;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.services-visual {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-visual h2 {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 4rem;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.service-card-content {
    padding: 1.5rem;
}

.service-card-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.select-service-btn {
    background: #667eea;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
}

.select-service-btn:hover {
    background: #764ba2;
}

.selected-service {
    border: 3px solid #27ae60;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #e74c3c;
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

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

.submit-btn {
    background: #e74c3c;
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
}

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

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

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

.footer-column h3 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.disclaimer {
    background: #34495e;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
    margin-right: 2rem;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.reject-btn:hover {
    background: #c0392b;
}

.about-page-content,
.services-page-content,
.contact-page-content,
.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.page-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.page-section {
    margin-bottom: 3rem;
}

.page-section h2 {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.page-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.page-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.page-section ul,
.page-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3.5rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.thanks-container p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.back-home-btn {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: background 0.3s ease;
}

.back-home-btn:hover {
    background: #764ba2;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.service-item h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-item .price {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .top-nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-text {
        margin-right: 0;
    }

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