/* Base Styles */
:root {
    --primary-color: #4ab19a;
    --secondary-color: #333;
    --text-color: #333;
    --light-text: #666;
    --background-color: #fff;
    --light-gray: #f5f5f5;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.section-description {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-text);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 1000;
    width: 90%;
    max-width: 600px;
    padding: 20px;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content h2 {
    text-align: center;
    margin-bottom: 15px;
}

.cookie-content p {
    text-align: center;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

/* Hero Section */
.hero {
    color: white;
    padding: 60px 0;
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

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

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-card h3 {
    font-size: 1rem;
    margin: 15px 0 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    background-color: var(--background-color);
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.why-us-text {
    flex: 2;
}

.why-us-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Investment Areas Section */
.investment-areas {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.area-image {
    height: 200px;
    overflow: hidden;
}

.area-card h3 {
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: var(--background-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card h3 {
    padding: 15px 15px 5px;
    font-size: 1rem;
    font-weight: 700;
}

.blog-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form button {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    padding: 50px 0 20px;
    background-color: var(--primary-color);
    color: white;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.footer-logo h2 {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a, .footer-bottom a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

address {
    font-style: normal;
    line-height: 1.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content, .why-us-content {
        flex-direction: column;
    }
    
    .areas-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .services-grid, .areas-grid, .blog-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .cookie-popup {
        width: 95%;
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

.main-section {
    padding: 80px 0;
}

.main-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.main-section .btn-primary {
    display: block;
    margin: 0 auto;
    width: fit-content;
}