:root {
    --primary-color: #4CAF50;
    --primary-dark: #1B5E20;
    --accent-color: #C62828;
    --text-color: #333;
    --light-text: #666;
    --light-bg: #f9f9f9;
    --alt-light-bg: #f0f7f0;
    --white: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 4rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--light-bg);
}

section:nth-child(even) {
    background-color: var(--alt-light-bg);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
    transform: skewX(-15deg);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

.btn-card {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave {
    width: 100%;
    height: 50px;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.logo-svg {
    margin-right: 0.5rem;
}

.nav-list {
    display: flex;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-icon {
    margin-right: 0.5rem;
    transition: var(--transition);
}

.nav-link:hover .nav-icon {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.hero {
    padding-top: 5rem;
    padding-bottom: 6rem;
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234CAF50' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-compare {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.compare-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    flex: 1;
    text-align: center;
    transition: var(--transition);
}

.compare-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.compare-image-container {
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
}

.compare-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
}

.wave-divider {
    stroke-dasharray: 4, 2;
    animation: dashAnimation 30s linear infinite;
}

@keyframes dashAnimation {
    to {
        stroke-dashoffset: 1000;
    }
}

.compare-list {
    text-align: left;
}

.compare-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.list-icon {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.card:hover .card-icon {
    background-color: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background-color: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
}

.comparison .container {
    max-width: 900px;
}

.table-container {
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 700;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(76, 175, 80, 0.05);
}

.comparison-table tr:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

.comparison-table td:first-child {
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    height: 300px;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transition: var(--transition);
}

.gallery-info h3 {
    color: var(--white);
    margin-bottom: 0.2rem;
}

.gallery-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-item:hover .gallery-info {
    padding-bottom: 1.5rem;
}

.alternatives-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.alternative-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.alternative-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.alternative-left, 
.alternative-right {
    flex: 1;
    text-align: center;
    padding: 1rem;
}

.alternative-divider {
    padding: 0 1rem;
}

.alt-icon {
    margin-bottom: 1rem;
}

.alt-icon-replace {
    background-color: rgba(198, 40, 40, 0.1);
    border-radius: 50%;
    padding: 1rem;
}

.alt-icon-alternative {
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    padding: 1rem;
}

.myths-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.myth-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.myth-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.myth-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.myth-content h3 {
    margin-bottom: 0.5rem;
}

.myth-content p {
    margin-bottom: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.contact-icon {
    margin-right: 0.8rem;
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.checkbox-group {
    flex-direction: row;
    align-items: center;
    grid-column: 1 / -1;
}

.form-group.checkbox-group input {
    margin-right: 0.5rem;
}

label {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

input, select, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.btn-form {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 200px;
}

.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding-top: 3rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.footer-item {
    padding: 1rem;
}

.footer-logo {
    grid-column: 1;
    grid-row: 1;
}

.footer-links {
    grid-column: 2;
    grid-row: 1;
}

.footer-policies {
    grid-column: 1;
    grid-row: 2;
}

.footer-newsletter {
    grid-column: 2;
    grid-row: 2;
}

.footer-logo a {
    color: var(--white);
}

.footer-logo p {
    margin-top: 1rem;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
}

.btn-newsletter {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-newsletter:hover {
    background-color: #b71c1c;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-compare {
        flex-direction: column;
    }
    
    .compare-divider {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-item {
        margin: 0.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .nav-list {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-item {
        margin: 0.3rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
    
    .nav-icon {
        margin-right: 0.3rem;
    }
    
    .nav-link span {
        display: none;
    }
    
    .alternative-item {
        flex-direction: column;
        text-align: center;
    }
    
    .alternative-divider {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .footer-logo, .footer-links, .footer-policies, .footer-newsletter {
        grid-column: 1;
    }
    
    .footer-logo {
        grid-row: 1;
    }
    
    .footer-links {
        grid-row: 2;
    }
    
    .footer-policies {
        grid-row: 3;
    }
    
    .footer-newsletter {
        grid-row: 4;
    }
}

@media (max-width: 576px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .nav-item {
        margin: 0.2rem;
    }
    
    .nav-link {
        padding: 0.3rem;
    }
    
    .compare-image-container {
        height: 150px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .myth-item {
        flex-direction: column;
    }
    
    .myth-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .benefit-item, .myth-item {
        padding: 1.2rem;
    }
    
    .nav-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }
    
    .nav-item {
        flex-shrink: 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

.policy-page {
    padding: 5rem 0;
}

.policy-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h2 {
    text-align: left;
    margin-top: 2.5rem;
}

.policy-content h2::after {
    margin-left: 0;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
}

.back-btn svg {
    margin-right: 0.5rem;
}

.thankyou-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thankyou-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    max-width: 700px;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
}

.thankyou-content h1 {
    margin-bottom: 1.5rem;
}

.thankyou-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}