* {
    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: #1a1a1a;
    overflow-x: hidden;
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(255,255,255,0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.nav-floating a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-floating a:hover {
    color: #0066cc;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 20px;
}

.visual-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}

.visual-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-content {
    position: relative;
    z-index: 10;
    padding: 4rem;
    max-width: 600px;
    background: rgba(255,255,255,0.95);
    margin: 3rem;
    border-radius: 8px;
}

.overlay-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.services-visual {
    padding: 6rem 2rem;
    background: white;
}

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

.service-card-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-card-visual:hover {
    transform: scale(1.02);
}

.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.service-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-overlay .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.service-overlay p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.select-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-btn:hover {
    background: #f0f0f0;
}

.select-btn.selected {
    background: #4CAF50;
    color: white;
}

.form-section {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.story-section {
    padding: 6rem 2rem;
    background: white;
}

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

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.inline-image {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.trust-section {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: normal;
}

.footer {
    background: #0a0a0a;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

.disclaimer {
    background: #f9f9f9;
    padding: 3rem 2rem;
    border-left: 4px solid #1a1a1a;
    margin: 3rem 0;
}

.disclaimer p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

.cookie-accept {
    background: #4CAF50;
    color: white;
}

.cookie-reject {
    background: #666;
    color: white;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    text-align: center;
    color: white;
    padding: 3rem;
}

.thanks-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-page {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #333;
}

.email-display {
    color: #1a1a1a;
    font-weight: 600;
}

.about-page {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.about-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.services-page {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-page h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

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

    .testimonials {
        flex-direction: column;
    }

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

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