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

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    color: #f0f3f7;
    margin-bottom: 35px;
}

.hero-image {
    max-width: 1200px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.story-section {
    padding: 90px 40px;
    background: #f8f9fa;
}

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

.story-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.story-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.problem-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.problem-card {
    flex: 1 1 500px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.problem-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e9ecef;
}

.problem-card h3 {
    font-size: 26px;
    margin: 30px 30px 15px;
    color: #2c3e50;
}

.problem-card p {
    padding: 0 30px 30px;
    font-size: 17px;
    color: #5a6c7d;
}

.insight-section {
    padding: 90px 40px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #ffffff;
}

.insight-content {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-content a {
    color: #ffffff;
    text-decoration: underline;
}

.services-showcase {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

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

.service-card {
    flex: 1 1 400px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #dee2e6;
}

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

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.card-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.select-service-btn {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

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

.testimonials-section {
    padding: 90px 40px;
    background: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 55px;
    color: #2c3e50;
}

.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 350px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #3498db;
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    color: #5a6c7d;
    font-weight: 600;
}

.pricing-reveal {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-container h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 55px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.price-card {
    flex: 1 1 350px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.3);
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.price {
    font-size: 38px;
    font-weight: 800;
    margin: 20px 0;
}

.price-card p {
    font-size: 15px;
    opacity: 0.9;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: flex-start;
    font-weight: 400;
    font-size: 14px;
    color: #5a6c7d;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: auto;
}

.checkbox-group a {
    color: #3498db;
}

.submit-btn {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 70px 40px;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    color: #856404;
    line-height: 1.8;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

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

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

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 15px;
}

.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: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #c0392b;
}

.page-header {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 40px;
    background: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-block img {
    flex: 1 1 450px;
    max-width: 550px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dee2e6;
}

.story-text {
    flex: 1 1 450px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 260px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn.primary {
    background: #ffffff;
    color: #f5576c;
}

.cta-btn.primary:hover {
    background: #f8f9fa;
}

.cta-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.3);
}

.services-detailed {
    padding: 80px 40px;
    background: #f8f9fa;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1 1 400px;
    background-color: #dee2e6;
}

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

.service-info {
    flex: 1 1 400px;
    padding: 45px;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-description {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-include {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.service-cta {
    background: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
}

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

.additional-services {
    padding: 80px 40px;
    background: #ffffff;
}

.additional-container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.additional-card {
    flex: 1 1 320px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #3498db;
}

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

.additional-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.additional-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.contact-content {
    padding: 80px 40px;
    background: #f8f9fa;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1 1 500px;
}

.contact-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

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

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-map-section {
    flex: 1 1 400px;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder p {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-cta {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
}

.thanks-section {
    padding: 100px 40px;
    background: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.selected-service-info {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 17px;
    color: #27ae60;
    font-weight: 600;
}

.thanks-submessage {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 35px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.thanks-btn.primary {
    background: #3498db;
    color: #ffffff;
}

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

.thanks-btn.secondary {
    background: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #dee2e6;
}

.thanks-btn.secondary:hover {
    background: #e9ecef;
}

.next-steps {
    padding: 80px 40px;
    background: #ffffff;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1 1 300px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-content {
    padding: 80px 40px;
    background: #f8f9fa;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.legal-wrapper h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-wrapper h2:first-of-type {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-wrapper h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-wrapper p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-wrapper ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-wrapper li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-wrapper a {
    color: #3498db;
    text-decoration: none;
}

.legal-wrapper a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .form-container {
        padding: 40px 25px;
    }
}