* {
    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: #333;
    background-color: #fff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

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

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

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

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

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #27ae60;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    display: inline-block;
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.hero-story {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 20px;
}

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

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

.story-intro {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

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

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.highlight-text {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 40px;
}

.problem-visual {
    padding: 80px 20px;
}

.split-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
}

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

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.impact-list {
    list-style: none;
    margin-top: 30px;
}

.impact-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.impact-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.insight-block {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #fff;
}

.insight-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.large-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.insight-block p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.solution-reveal {
    padding: 100px 20px;
}

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

.solution-text {
    margin-bottom: 50px;
}

.solution-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #27ae60;
}

.solution-text p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
}

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

.trust-building {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 700;
    color: #27ae60;
}

.benefits-deep {
    padding: 100px 20px;
}

.benefit-item {
    margin-bottom: 50px;
}

.benefit-item h4 {
    font-size: 24px;
    color: #27ae60;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 18px;
    color: #555;
}

.cta-transition {
    padding: 80px 20px;
    background: linear-gradient(135deg, #27ae60, #229954);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary-large {
    display: inline-block;
    background-color: #fff;
    color: #27ae60;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-primary-large:hover {
    transform: scale(1.05);
}

.products-reveal {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    color: #555;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-card {
    flex: 1;
    min-width: 320px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

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

.product-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

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

.urgency-block {
    padding: 80px 20px;
    background-color: #e74c3c;
    color: #fff;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
}

.order-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

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

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

.order-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-privacy {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-privacy input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-privacy label {
    font-size: 14px;
    color: #555;
}

.form-privacy a {
    color: #27ae60;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-push {
    padding: 100px 20px;
}

.final-push h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.final-push p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
}

.btn-secondary-large {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 30px;
    transition: transform 0.3s;
}

.btn-secondary-large:hover {
    transform: scale(1.05);
}

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-section p {
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

.footer-bottom p {
    opacity: 0.6;
}

.page-hero {
    background: linear-gradient(135deg, #27ae60, #229954);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.about-story {
    padding: 100px 20px;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.story-image {
    flex: 1;
    border-radius: 8px;
}

.mission-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.values-grid {
    padding: 80px 20px;
    text-align: center;
}

.values-grid h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.value-card p {
    font-size: 16px;
    color: #555;
}

.impact-numbers {
    padding: 80px 20px;
    background-color: #27ae60;
    color: #fff;
}

.numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.number-item {
    text-align: center;
}

.number-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
}

.number-item p {
    font-size: 18px;
    opacity: 0.9;
}

.team-approach {
    padding: 100px 20px;
}

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-approach p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.cta-about {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.services-intro {
    padding: 80px 20px;
    text-align: center;
}

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

.services-intro p {
    font-size: 18px;
    color: #555;
}

.products-catalog {
    padding: 60px 20px 100px;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 400px;
    height: 350px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-content {
    padding: 40px;
    flex: 1;
}

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

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

.service-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.btn-service {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

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

.why-choose {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.why-choose h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.reasons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.reason-item {
    flex: 1;
    min-width: 250px;
}

.reason-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #27ae60;
}

.reason-item p {
    font-size: 16px;
    color: #555;
}

.cta-services {
    padding: 80px 20px;
}

.contact-content {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #27ae60;
}

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

.info-block a {
    color: #27ae60;
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-box {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

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

.contact-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

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

.faq-item p {
    font-size: 16px;
    color: #555;
}

.cta-contact {
    padding: 80px 20px;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60, #229954);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 22px;
    opacity: 0.95;
}

.thanks-info {
    padding: 100px 20px;
}

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.timeline-content p {
    font-size: 16px;
    color: #555;
}

.order-details {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.order-summary {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-summary p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.order-note {
    font-style: italic;
    color: #777;
}

.next-steps {
    padding: 80px 20px;
}

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

.suggestions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.suggestion-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.suggestion-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.btn-secondary {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.impact-message {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.impact-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.impact-box h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.impact-box p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
}

.impact-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 30px;
}

.legal-page {
    padding: 80px 20px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #27ae60;
}

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

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.legal-page a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-page em {
    font-style: italic;
    color: #777;
}

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

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

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

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

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

    .story-intro h2,
    .section-header h2,
    .page-hero h1 {
        font-size: 28px;
    }

    .products-container,
    .testimonial-grid,
    .values-container,
    .numbers-container {
        flex-direction: column;
    }

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

    .service-card img {
        width: 100%;
        height: 250px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
