/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container Utilities */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Header */
.header-minimal {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.brand a {
    color: #2c3e50;
}

.nav-minimal {
    display: flex;
    gap: 32px;
}

.nav-minimal a {
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-minimal a:hover,
.nav-minimal a.active {
    color: #2c3e50;
}

.ad-label {
    font-size: 12px;
    color: #999;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Sections */
.hero-fullscreen {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-text-center {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 900px;
}

.hero-text-center h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
}

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

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #ffffff;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 60px;
}

.story-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 60px 0 24px;
    color: #2c3e50;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.image-inline {
    margin: 50px 0;
    background-color: #ecf0f1;
}

.image-inline img {
    width: 100%;
    border-radius: 8px;
}

.benefit-list {
    list-style: none;
    margin: 40px 0;
}

.benefit-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 24px;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.split-image {
    flex: 1;
    background-color: #bdc3c7;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

/* Insight Section */
.insight-section {
    padding: 100px 0;
    background: #ffffff;
}

.insight-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.insight-section > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
    color: #555;
}

.insight-card {
    background: #f8f9fa;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.insight-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

/* Benefits Reveal */
.benefits-reveal {
    padding: 100px 0;
    background: #f8f9fa;
}

.benefits-reveal h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
    text-align: center;
}

.benefit-block {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 32px;
    color: #27ae60;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #555;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 24px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 0 24px 20px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #5568d3;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.7;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    color: #555;
    margin-bottom: 60px;
}

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

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

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

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

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: #fffbeb;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

/* References Section */
.references-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.references-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.reference-list {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.reference-list li {
    margin-bottom: 10px;
}

.reference-list a {
    color: #667eea;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #2c3e50;
    color: #ecf0f1;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    font-size: 14px;
    color: #ecf0f1;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.image-content {
    margin: 60px 0;
    background-color: #ecf0f1;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    margin-top: 80px;
}

.values-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #667eea;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.cta-inline {
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.cta-inline p {
    font-size: 20px;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #667eea;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Services Page */
.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-detail-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin: 30px 0 20px;
}

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

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

.services-comparison {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-comparison h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header,
.comparison-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.comparison-header {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 16px;
    text-align: center;
    font-size: 14px;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 1.5;
}

.comparison-row:nth-child(even) {
    background: #ffffff;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #667eea;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.info-note {
    margin-top: 60px;
    padding: 20px;
    background: #fffbeb;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

.contact-visual {
    flex: 1;
    background-color: #bdc3c7;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.location-note {
    margin-top: 40px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
}

.location-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.faq-item a {
    color: #667eea;
    text-decoration: underline;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 60px;
    color: #555;
}

.thanks-info {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info ul {
    padding-left: 20px;
}

.thanks-info ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #555;
}

.selected-service-info {
    margin: 40px 0;
}

.service-selected {
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ecf0f1;
    color: #2c3e50;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #d5dbdb;
}

.thanks-image {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ecf0f1;
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
}

.next-steps {
    padding: 80px 0;
    background: #f8f9fa;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.next-step-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.next-step-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.next-step-item a {
    color: #667eea;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 16px;
    color: #2c3e50;
}

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

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

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

.legal-content a {
    color: #667eea;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background: #2c3e50;
    color: #ffffff;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table td {
    font-size: 14px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .split-layout,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        min-width: 45%;
    }

    .testimonial-grid {
        flex-direction: column;
    }

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

    .comparison-table {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-minimal {
        order: 3;
        width: 100%;
        justify-content: center;
    }

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

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

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

    .story-section h2,
    .insight-section h2,
    .trust-section h2,
    .benefits-reveal h2,
    .services-preview h2 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}