* {
    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: #2c3e50;
    background: #ffffff;
}

img {
    object-fit: cover;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #7f8c8d;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.6rem;
    background: #ecf0f1;
    border-radius: 3px;
}

.hero-visual {
    width: 100%;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: #34495e;
}

.hero-bg {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
    max-width: 700px;
    line-height: 1.5;
}

.intro-story {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-visual {
    flex: 1;
    background-color: #95a5a6;
}

.story-visual img {
    width: 100%;
    height: auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.problem-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}

.content-narrow > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

.problem-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ecf0f1;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.problem-card p {
    color: #555;
}

.insight-visual {
    padding: 5rem 2rem;
    background: #34495e;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #7f8c8d;
}

.insight-image img {
    width: 100%;
    height: auto;
}

.insight-content {
    flex: 1;
    color: #ffffff;
}

.insight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.insight-content a {
    color: #ffd700;
}

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

.testimonials {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.testimonial cite {
    display: block;
    text-align: right;
    color: #7f8c8d;
    font-style: normal;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-visual-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 450px;
    background: #f8f9fa;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #95a5a6;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 1.5rem;
    text-align: left;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    padding: 0.8rem 1.5rem;
    background: #e67e22;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.pricing-reveal {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.pricing-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    align-items: center;
}

.price-service {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
}

.cta-form-section {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-container > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    text-align: left;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #95a5a6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.references-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reference-list {
    padding-left: 1.5rem;
}

.reference-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.reference-list a {
    color: #3498db;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

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

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

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

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #2c3e50;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn-home {
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    display: inline-block;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .story-wrapper,
    .insight-container {
        flex-direction: column;
    }

    .problem-cards {
        flex-direction: column;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 1rem;
    }

    .ad-disclosure {
        flex-basis: 100%;
        text-align: center;
    }
}