/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 60px;
    vertical-align: middle;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #32CD32;
}

/* Hero Section */
.hero {
    position: relative;
    height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.hero-content .btn {
    background-color: #32CD32;
    color: #121212;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #28a428;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #32CD32;
    text-transform: uppercase;
}

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

.card {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card img {
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #32CD32;
}

.card p {
    font-size: 1.05rem;
    color: #bbb;
}

/* Footer */
footer {
    background-color: #0d0d0d;
    color: #bbb;
    padding: 60px 0 20px;
    border-top: 2px solid #32CD32;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* Single row layout */
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 280px;
    min-width: 280px;
    box-sizing: border-box;
}

.footer-column h5 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-left: 3px solid #32CD32;
    padding-left: 10px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #32CD32;
}

.footer-column p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    white-space: normal;
    overflow: visible;
    word-break: break-word;
    max-width: 100%;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    vertical-align: middle;
}

.email-line {
    white-space: nowrap !important;
    display: block;
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        min-width: 100%;
    }
    .footer-column h5 {
        border-left: none;
        border-bottom: 2px solid #32CD32;
        padding-left: 0;
        padding-bottom: 5px;
        display: inline-block;
    }
}
