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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #001F3F;
    color: #E0E0E0;
    line-height: 1.6;
}

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

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(to bottom, #001F3F, #003366);
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.1); /* Slight glow for logo */
}

.hero h1 {
    font-size: 3em;
    color: #007BFF;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #E0E0E0;
    font-weight: 300;
    margin-bottom: 20px;
}

.intro {
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

.helped-section {
    padding: 60px 0;
    background-color: #001F3F;
}

.helped-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #007BFF;
    margin-bottom: 20px;
}

.helped-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.services {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.services li {
    background: rgba(0, 123, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007BFF;
}

.cta-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(to bottom, #003366, #001F3F);
}

.cta-section h2 {
    font-size: 2.5em;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: #007BFF;
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.note {
    font-style: italic;
    color: #A0A0A0;
}

footer {
    padding: 20px 0;
    text-align: center;
    background-color: #001F3F;
    border-top: 1px solid #003366;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2em; }
    .buttons { flex-direction: column; align-items: center; }
    .services { grid-template-columns: 1fr; }
}