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

:root {
    --primary: #1a1a1a;
    --secondary: #ff6b35;
    --accent: #004e89;
    --light: #f7f7f7;
    --text: #2d2d2d;
    --overlay: rgba(0, 0, 0, 0.5);
}

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

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.7) 0%, rgba(255, 107, 53, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.floating-nav {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.floating-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.floating-nav a:hover {
    color: var(--secondary);
}

.ad-disclosure {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid white;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background: white;
    color: var(--accent);
}

.image-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.image-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.image-section-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 80px 60px;
    max-width: 700px;
}

.image-section-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.image-section-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.split-visual {
    display: flex;
    min-height: 80vh;
}

.split-image {
    flex: 1;
    position: relative;
    background-color: #e0e0e0;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

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

.split-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text);
}

.overlay-cards {
    position: relative;
    padding: 120px 40px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}

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

.visual-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    position: relative;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
}

.card-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card-overlay p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.card-cta {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.card-cta:hover {
    background: #ff8557;
}

.full-width-visual {
    position: relative;
    height: 600px;
    background-color: #d0d0d0;
}

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

.visual-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.visual-text-overlay h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.visual-text-overlay p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.testimonial-visual {
    padding: 100px 40px;
    background: var(--light);
}

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

.testimonial-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.form-section {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.footer-visual {
    background: var(--primary);
    color: white;
    padding: 60px 40px 30px;
}

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

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-column p,
.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #808080;
    font-size: 0.9rem;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.references {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.references h4 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.references ol {
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.references a {
    color: #7db8ff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

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

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

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

.accept-btn {
    background: var(--secondary);
    color: white;
}

.reject-btn {
    background: #e0e0e0;
    color: var(--text);
}

.page-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
    padding: 120px 40px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.service-image {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.contact-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.contact-item {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--light);
    border-radius: 20px;
}

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

.thanks-container p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.citation {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin: 0 2px;
    cursor: pointer;
}

.citation:hover {
    text-decoration: underline;
}

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

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

    .floating-nav {
        top: 10px;
        right: 10px;
        padding: 10px 15px;
        gap: 15px;
    }

    .ad-disclosure {
        top: 10px;
        left: 10px;
        font-size: 0.75rem;
    }

    .split-visual {
        flex-direction: column;
    }

    .image-section-content {
        padding: 40px 30px;
    }

    .image-section-content h2 {
        font-size: 2rem;
    }

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

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

    .page-header h1 {
        font-size: 2.5rem;
    }
}
