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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(52,73,94,0.65));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 30px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.intro-story {
    background: #ffffff;
}

.story-card {
    max-width: 700px;
    margin: 0 auto;
}

.story-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-card p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.problem-section {
    background: #ecf0f1;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.insight-card {
    flex: 1 1 300px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 350px;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.insight-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.solution-reveal {
    background: #ffffff;
}

.reveal-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.reveal-text {
    flex: 1;
}

.reveal-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.reveal-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.reveal-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.trust-building {
    background: #f8f9fa;
}

.trust-building h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.services-showcase {
    background: #ffffff;
}

.services-showcase h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    flex: 1 1 350px;
    max-width: 380px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

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

.select-service-btn {
    width: 100%;
    padding: 14px 25px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #2980b9;
}

.contact-form-section {
    background: #ecf0f1;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 16px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.submit-btn {
    padding: 15px 30px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-cta {
    background: #2c3e50;
    color: white;
}

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

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 18px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #2980b9;
}

.main-footer {
    background: #34495e;
    color: white;
    padding: 50px 30px 20px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 18px;
}

.footer-column p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 25px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background: #95a5a6;
    color: white;
}

.page-header {
    background: #2c3e50;
    color: white;
    padding: 60px 30px;
    text-align: center;
}

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

.about-content {
    background: #ffffff;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-intro h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.about-image-section {
    margin: 50px 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.about-approach {
    margin: 60px 0;
}

.about-approach h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.approach-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.approach-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.approach-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.about-values {
    max-width: 800px;
    margin: 60px auto 0;
}

.about-values h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-values p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.services-page-content {
    background: #f8f9fa;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-item ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.contact-page-content {
    background: #ffffff;
}

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

.contact-info-card {
    flex: 1 1 300px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-info-card .email-display {
    color: #3498db;
    font-weight: 600;
}

.contact-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.legal-page-content {
    background: #ffffff;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 18px;
    }

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

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

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}
