* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', 'DM Sans', -apple-system, 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f0f6fb 0%, #f5f9fc 100%);
}

header {
    background: linear-gradient(135deg, #001a33 0%, #0d3b66 100%);
    padding: 1.4rem 0;
    box-shadow: 0 8px 24px rgba(13, 59, 102, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5fc3f5 0%, #4db8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #a8d8ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4db8e8 0%, #2dd4a4 100%);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #fff;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

section {
    margin-bottom: 4rem;
    padding: 2.5rem 0;
}

h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #001a33 0%, #0d3b66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #001a33;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4db8e8 0%, #2dd4a4 100%);
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d3b66;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 1.4rem;
}

p.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2dd4a4;
    margin-bottom: 2rem;
}

#page-header,
#hero {
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.08) 0%, rgba(45, 212, 164, 0.08) 100%);
    border-radius: 16px;
    margin-bottom: 3.5rem;
    border: 2px solid rgba(45, 212, 164, 0.2);
}

.contact-details {
    background: linear-gradient(135deg, #f0f6fb 0%, #f0fdfb 100%);
    padding: 2.2rem;
    border-radius: 16px;
    border-left: 4px solid #2dd4a4;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(45, 212, 164, 0.08);
}

.contact-details strong {
    color: #0d3b66;
    font-weight: 700;
}

form {
    background: linear-gradient(135deg, #fff 0%, #f8fdfb 100%);
    padding: 2.8rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid rgba(45, 212, 164, 0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

fieldset {
    border: none;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

legend {
    font-size: 1.2rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.6rem;
}

label {
    display: block;
    font-weight: 600;
    color: #0d3b66;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0f0f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fafdfb;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #2dd4a4;
    box-shadow: 0 0 0 3px rgba(45, 212, 164, 0.15);
    background-color: #fff;
}

button,
input[type="submit"] {
    background: linear-gradient(135deg, #001a33 0%, #0d3b66 100%);
    color: #fff;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

button::before,
input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4db8e8 0%, #2dd4a4 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

button:hover,
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(45, 212, 164, 0.4);
}

button:hover::before,
input[type="submit"]:hover::before {
    left: 0;
}

a {
    color: #0d3b66;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #2dd4a4;
}

footer {
    background: linear-gradient(135deg, #001a33 0%, #0d3b66 100%);
    color: #a8d8ff;
    padding: 3.5rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer p {
    margin-bottom: 0.8rem;
    color: #a8d8ff;
}

footer a {
    color: #2dd4a4;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    main {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.3rem;
    }
    nav ul {
        gap: 1rem;
    }
}