/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0056b3;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0056b3;
}

/* Hero Section */
.hero {
    height: 600px;
    background: #00F0C0; /* Same turquoise as your chat */
   
    
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #003d7a;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #0056b3;
    color: #0056b3;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #0056b3;
    color: white;
}

/* Text Section */
.text-section {
    padding: 80px 0;
    background-color: #fff;
}

.text-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.text-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
}

.text-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px auto 20px;
    max-width: 800px;
}

.text-section ul {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
}

.text-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    margin-left: 20px;
}

/* Two Column Section */
.two-column {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.two-column h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.column-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-container {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.image-container img {
    transition: transform 0.5s ease;
    width: 100%;
}

.image-container:hover img {
    transform: scale(1.05);
}

.column h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.column p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: #555;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0056b3;
}

.feature p {
    color: #555;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
}

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

.link-group h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: #fff;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .column-wrapper {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        height: 450px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .text-section h2,
    .two-column h2,
    .features h2 {
        font-size: 28px;
    }
}