
/* General Body Styles */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Override container padding */
.landing-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

/* Header/Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-section .btn-download {
    background-color: #ffffff;
    color: #007bff;
    border: 2px solid #ffffff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-section .btn-download:hover {
    background-color: transparent;
    color: white;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
}

.feature-item {
    margin-bottom: 40px;
}

.feature-item .icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Screenshots Section */
.screenshots-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.screenshots-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
}

.carousel-inner img {
    max-height: 600px;
    width: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

/* Footer */
.footer-section {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
    text-align: center;
}
