.ski-image {
    /* Using a gradient background instead of an image */
    background: linear-gradient(45deg, #228be6, #15aabf, #4263eb);
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
    height: 100%;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Add snow-like overlay */
.ski-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 5%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 5%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 5%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 5%),
        radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 5%);
    opacity: 0.8;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* General Styles */
:root {
    --primary-color: #4263eb;
    --secondary-color: #228be6;
    --accent-color: #15aabf;
    --text-color: #212529;
    --text-light: #495057;
    --background-light: #f8f9fa;
    --background-dark: #343a40;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #3b5bdb;
    border-color: #3b5bdb;
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid #dee2e6;
    color: var(--text-color);
}

.btn-outline-light:hover {
    background-color: #f1f3f5;
    color: var(--primary-color);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

/* Landing Container */
.landing-container {
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.navbar-brand .logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.login-btn, .signup-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
}

/* Hero Section */
.hero-section {
    padding: 2rem 0 6rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
}

.image-container {
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--background-light);
    border-radius: 40px 40px 0 0;
    margin-top: -2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    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(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: inline-block;
    padding: 1rem;
    background-color: rgba(66, 99, 235, 0.1);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background-color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background-color: var(--background-light);
    transition: transform 0.3s ease;
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.testimonial-card .quote {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-card .quote::before {
    content: """;
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-card .author {
    color: var(--text-light);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-content .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background-color: var(--background-dark);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .features-grid, .steps-container, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        gap: 2rem;
    }
}