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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --dark-bg: #1a1a1a;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #856404;
    border-bottom: 1px solid #ffc107;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

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

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.3);
}

.story-section {
    padding: 100px 40px;
    background: var(--text-light);
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image-wrapper {
    flex: 1;
    position: relative;
    background-color: #f5f5f5;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.visual-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    background-color: #2c3e50;
}

.visual-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.visual-overlay {
    position: relative;
    z-index: 10;
    padding: 60px;
    max-width: 700px;
    margin-left: 100px;
    color: var(--text-light);
}

.visual-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.visual-overlay p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.services-showcase {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.services-showcase h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: var(--text-dark);
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 400px;
    cursor: pointer;
    background-color: #ffffff;
}

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

.service-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #ddd;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #1a252f;
}

.select-service-btn.selected {
    background: var(--accent-color);
}

.testimonials-section {
    padding: 100px 40px;
    background: var(--dark-bg);
    color: var(--text-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

.form-section {
    padding: 100px 40px;
    background: white;
}

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

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

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

.footer-column a:hover {
    color: var(--text-light);
}

.footer-email {
    color: #bbb;
    pointer-events: none;
}

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

.disclaimer {
    background: #fff3cd;
    padding: 30px;
    margin: 40px auto;
    max-width: 1200px;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer h4 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 25px 40px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

.cookie-text {
    flex: 1;
    margin-right: 30px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent-color);
    color: white;
}

.cookie-accept:hover {
    background: #c0392b;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background: white;
    color: black;
}

.about-hero {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.contact-hero {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.thanks-card {
    background: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.thanks-card h1 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.thanks-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.legal-page {
    padding: 120px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page p,
.legal-page ul {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-page ul {
    padding-left: 25px;
}

.legal-page li {
    margin-bottom: 10px;
}

.services-page {
    padding: 120px 40px 80px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-header p {
    font-size: 1.3rem;
    color: #666;
}

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

    .story-section {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .visual-overlay {
        margin-left: 0;
        padding: 40px;
    }

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

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

    .cookie-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

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