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

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.ad-notice {
    color: #95a5a6;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-visual 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(0,0,0,0.7) 0%, rgba(52,73,94,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

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

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-intro {
    background-color: #f8f9fa;
}

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

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.split-layout {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

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

.split-content {
    flex: 1;
    padding: 3rem;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.insight-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

.problem-amplification {
    background-color: #ecf0f1;
}

.insight-reveal {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.insight-reveal img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    background-color: #bdc3c7;
}

.emphasis-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e67e22;
    line-height: 1.5;
    margin-top: 2rem;
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.trust-building {
    background-color: #34495e;
    color: #ecf0f1;
}

.trust-building h2 {
    color: #f39c12;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.process-card {
    background-color: #2c3e50;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 320px;
    text-align: left;
}

.card-number {
    display: block;
    font-size: 3rem;
    color: #f39c12;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.process-card p {
    color: #bdc3c7;
    line-height: 1.6;
}

.testimonials-inline {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    margin: 2rem auto;
    border-left: 4px solid #f39c12;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 700px;
}

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

.testimonial cite {
    display: block;
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.wide-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.benefits-section {
    background-color: #ffffff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #ecf0f1;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: #95a5a6;
}

.benefit-item h4 {
    font-size: 1.5rem;
    padding: 1.5rem;
    padding-bottom: 0.5rem;
    color: #2c3e50;
}

.benefit-item p {
    padding: 0 1.5rem 1.5rem;
    color: #34495e;
}

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

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.price-card {
    background-color: #ffffff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 360px;
    flex: 1;
    min-width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.price-card.featured {
    border-color: #f39c12;
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

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

.cta-select {
    width: 100%;
    padding: 1rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.additional-services {
    max-width: 900px;
    margin: 3rem auto;
}

.additional-services h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.service-list {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid #ecf0f1;
}

.service-row:last-child {
    border-bottom: none;
}

.service-name {
    flex: 1;
    font-weight: 600;
    color: #2c3e50;
}

.service-price {
    font-size: 1.3rem;
    color: #e67e22;
    font-weight: 700;
    margin: 0 1.5rem;
}

.btn-select-small {
    padding: 0.6rem 1.2rem;
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-small:hover {
    background-color: #7f8c8d;
}

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

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

.form-container h2 {
    color: #f39c12;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    color: #ecf0f1;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: #34495e;
    padding: 2.5rem;
    border-radius: 8px;
}

.selected-service-display {
    background-color: #f39c12;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.selected-service-display p {
    color: #ffffff;
    margin: 0.3rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #7f8c8d;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #2c3e50;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #e67e22;
}

.final-trust {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

.final-trust h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-column h4 {
    color: #f39c12;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column a:hover {
    color: #f39c12;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: #ecf0f1;
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 3rem 2rem;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.selected-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.step-timeline {
    text-align: left;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #f39c12;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #7f8c8d;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.story-block img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    background-color: #bdc3c7;
    object-fit: cover;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

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

.story-text p {
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    color: #e67e22;
    margin-bottom: 1rem;
}

.expertise-section {
    margin: 4rem 0;
}

.expertise-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.expertise-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.expertise-content img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    background-color: #bdc3c7;
    object-fit: cover;
}

.expertise-list {
    flex: 1;
    min-width: 300px;
}

.expertise-list ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.expertise-list li {
    margin-bottom: 0.8rem;
    color: #34495e;
}

.mission-section {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem;
    background-color: #34495e;
    color: #ecf0f1;
    border-radius: 8px;
}

.mission-section h2 {
    color: #f39c12;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
}

.complete-systems {
    margin-bottom: 5rem;
}

.complete-systems h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.system-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.system-detail.reverse {
    flex-direction: row-reverse;
}

.system-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.system-info {
    flex: 1;
    min-width: 300px;
}

.system-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.featured-price {
    color: #27ae60;
}

.badge-popular {
    display: inline-block;
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.system-description {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.system-info h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.package-contents {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-contents li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #34495e;
}

.package-contents li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #3498db;
}

.savings-note {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 5px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.individual-components {
    margin-top: 5rem;
}

.individual-components h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.components-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.component-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 350px;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.component-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background-color: #95a5a6;
}

.component-card h3 {
    font-size: 1.4rem;
    padding: 1.5rem;
    padding-bottom: 0.5rem;
    color: #2c3e50;
}

.component-card p {
    padding: 0 1.5rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.component-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e67e22;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.btn-component {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-services-form {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.4rem;
    color: #e67e22;
    margin-bottom: 0.8rem;
}

.info-item p {
    color: #34495e;
    line-height: 1.7;
}

.info-item a {
    color: #3498db;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    background-color: #bdc3c7;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.contact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 2rem;
    color: #ffffff;
}

.contact-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: #34495e;
}

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

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

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

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

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

    .process-cards {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.8rem;
    }

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

    .price-tag {
        font-size: 2rem;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }
}