:root {
    --primary-color: #4056a1;
    --secondary-color: #c5cbea;
    --accent-color: #d79922;
    --light-color: #efe2ba;
    --dark-color: #2b2d42;
    --success-color: #538d22;
    --water-color: #48cae4;
    --mountain-color: #845ec2;
    --ground-color: #f13c20;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: white;
    overflow-x: hidden;
}

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

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 2rem 0;
    background: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: lowercase;
    font-size: 1.1rem;
    position: relative;
    padding: 0.25rem 0;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: lowercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c07e1d;
}

.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(to bottom, #654ea3, #eaafc8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-color);
    margin-bottom: 2rem;
}

.discover-button {
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.discover-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background-color: var(--mountain-color);
    clip-path: polygon(0% 100%, 20% 65%, 40% 90%, 60% 70%, 80% 80%, 100% 60%, 100% 100%);
}

.mountain-2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: var(--ground-color);
    clip-path: polygon(0% 100%, 10% 90%, 30% 100%, 50% 85%, 70% 100%, 90% 80%, 100% 90%, 100% 100%);
}

.forest {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
    z-index: 2;
}

.tree {
    position: absolute;
    bottom: 20%;
    width: 40px;
    height: 80px;
    background-color: var(--success-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.water {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20%;
    background-color: var(--water-color);
    z-index: 1;
}

.person {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 30px;
    height: 60px;
    z-index: 3;
}

.person-head {
    position: absolute;
    top: 0;
    left: 5px;
    width: 20px;
    height: 20px;
    background-color: #f5d6ba;
    border-radius: 50%;
}

.person-body {
    position: absolute;
    top: 20px;
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.social-icons {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 5;
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-image {
    height: 200px;
    background-color: var(--secondary-color);
    position: relative;
}

.feature-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
}

.feature-content {
    padding: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: #555;
    font-size: 0.95rem;
}

.testimonials {
    background-color: var(--light-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    color: #666;
    font-size: 0.85rem;
}

.cta-section {
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-btn {
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.cta-btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.25rem;
}

.footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.back-home {
    display: block;
    text-align: center;
    margin: 2rem auto;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    max-width: 200px;
}

@media (max-width: 768px) {
    header {
        background-color: rgba(64, 86, 161, 0.9);
        padding: 1rem 0;
    }

    .header-container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}