@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #0066CC 0%, #004080 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Hero Section */
#hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #0066CC;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-block;
    background-color: #00AA55;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #008844;
}

/* Features Section */
#why-local {
    padding: 4rem 0;
    background-color: white;
}

#why-local h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: #0066CC;
    margin-bottom: 3rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 3rem;
    color: #00AA55;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #0066CC;
    margin-bottom: 1rem;
}

.image-center {
    text-align: center;
    margin-top: 2rem;
}

.image-center img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Applications Section */
#applications {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

#applications h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: #0066CC;
    margin-bottom: 3rem;
}

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

.app-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.app-item i {
    font-size: 2.5rem;
    color: #0066CC;
    margin-bottom: 1rem;
}

.app-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

/* ROI Section */
#roi {
    padding: 4rem 0;
    background-color: white;
}

#roi h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: #0066CC;
    margin-bottom: 3rem;
}

.roi-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.roi-text {
    flex: 1;
}

.roi-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.roi-text ul {
    list-style: none;
}

.roi-text li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.roi-text li i {
    color: #00AA55;
    margin-right: 0.5rem;
}

.roi-image {
    flex: 1;
    text-align: center;
}

.roi-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0066CC 0%, #004080 100%);
    color: white;
    text-align: center;
}

#contact h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

#contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #00AA55;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .roi-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .feature-item,
    .app-item {
        padding: 1.5rem;
    }
}

