* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0066cc;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo svg {
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #0066cc;
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefits,
.how-it-works,
.products,
.testimonials,
.health-benefits,
.maintenance,
.contact {
    padding: 4rem 0;
}

.benefits {
    background-color: #f8f9fa;
}

.benefits h2,
.how-it-works h2,
.products h2,
.testimonials h2,
.health-benefits h2,
.maintenance h2,
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.testimonials {
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.health-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.health-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.health-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.health-item span {
    color: #333;
    font-size: 1.1rem;
}

.health-image img {
    width: 100%;
    border-radius: 10px;
}

.maintenance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.maintenance-text h3 {
    margin-bottom: 1rem;
    color: #333;
}

.maintenance-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.maintenance-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.maintenance-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.maintenance-price {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.maintenance-price .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0066cc;
}

.maintenance-image img {
    width: 100%;
    border-radius: 10px;
}

.contact {
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature span {
    color: #333;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-contacts h3 {
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item svg {
    color: #0066cc;
}

.contact-item span {
    color: #ccc;
}

.footer-menu nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    background-color: #0066cc;
    color: #fff;
}

.footer-disclaimer {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #ccc;
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-text span {
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-decline {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #4caf50;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #45a049;
}

.cookie-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-decline:hover {
    background-color: #fff;
    color: #333;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story,
.mission-vision,
.team,
.values,
.achievements,
.cta {
    padding: 4rem 0;
}

.about-story {
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mission-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

.team {
    background-color: #f8f9fa;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0066cc;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 1rem;
}

.member-info p {
    color: #666;
    line-height: 1.6;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.achievements {
    background-color: #f8f9fa;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #666;
    font-size: 1.1rem;
}

.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-overview,
.products-detailed,
.maintenance-plans,
.installation-process,
.warranty,
.contact-services {
    padding: 4rem 0;
}

.services-overview {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.service-card ul {
    padding-left: 1.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    border-radius: 10px;
}

.product-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.spec-item {
    font-size: 0.9rem;
    color: #666;
}

.product-content p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.product-pricing {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-label {
    color: #666;
}

.price-value {
    font-weight: bold;
    color: #0066cc;
}

.price-value.total {
    font-size: 1.2rem;
    color: #333;
}

.maintenance-plans {
    background-color: #f8f9fa;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.plan-card.featured {
    border: 3px solid #0066cc;
    transform: scale(1.05);
}

.plan-card.featured::before {
    content: "CEL MAI POPULAR";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0066cc;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: #0066cc;
}

.plan-price .period {
    font-size: 0.9rem;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-frequency {
    font-size: 0.9rem;
    color: #0066cc;
    font-weight: bold;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.timeline-duration {
    font-size: 0.9rem;
    color: #0066cc;
    font-weight: bold;
}

.warranty {
    background-color: #f8f9fa;
}

.warranty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.warranty-text h3 {
    margin-bottom: 1rem;
    color: #333;
}

.warranty-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.warranty-text ul {
    padding-left: 1.5rem;
}

.warranty-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.warranty-image img {
    width: 100%;
    border-radius: 10px;
}

.contact-services {
    background-color: #f8f9fa;
}

.contact-services .contact-content {
    text-align: center;
}

.contact-services h2 {
    margin-bottom: 1rem;
}

.contact-services p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-option {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #0066cc;
    font-weight: bold;
}

.contact-info span {
    color: #666;
    font-size: 0.9rem;
}

.privacy-content,
.terms-content {
    padding: 4rem 0;
}

.privacy-text,
.terms-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacy-text h2,
.terms-text h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #333;
}

.privacy-text h2:first-child,
.terms-text h2:first-child {
    margin-top: 0;
}

.privacy-text p,
.terms-text p {
    margin-bottom: 1rem;
    color: #666;
}

.privacy-text ul,
.terms-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-text li,
.terms-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.privacy-text strong,
.terms-text strong {
    color: #333;
}

.privacy-text .contact-info,
.terms-text .contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.privacy-text .contact-info p,
.terms-text .contact-info p {
    margin-bottom: 0.5rem;
}

.thankyou-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.thankyou-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.thankyou-content h1 {
    font-size: 3rem;
    margin: 0;
}

.thankyou-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.thankyou-details,
.contact-urgent,
.thankyou-benefits,
.thankyou-guarantee,
.navigation-links {
    padding: 4rem 0;
}

.thankyou-details {
    background-color: #f8f9fa;
}

.thankyou-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.contact-urgent {
    text-align: center;
}

.urgent-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.urgent-content p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.urgent-content .contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.urgent-content .contact-option {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #0066cc;
    font-weight: bold;
}

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

.thankyou-benefits {
    background-color: #f8f9fa;
}

.thankyou-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-text p {
    color: #666;
    line-height: 1.6;
}

.thankyou-guarantee {
    text-align: center;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.guarantee-content h2 {
    margin: 0;
    color: #333;
}

.guarantee-content p {
    max-width: 600px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.guarantee-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: #4caf50;
    font-weight: bold;
}

.navigation-links {
    background-color: #f8f9fa;
    text-align: center;
}

.navigation-links h2 {
    margin-bottom: 3rem;
    color: #333;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-5px);
}

.nav-link span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .health-content,
    .maintenance-content,
    .about-content,
    .contact-content,
    .warranty-content {
        grid-template-columns: 1fr;
    }
    
    .product-detailed {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-menu nav {
        justify-content: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 100%;
        max-width: 300px;
    }
} 