* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', -apple-system, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #f8f8f8;
}

header {
    background: linear-gradient(135deg, #4a5a6f 0%, #5a6f8c 100%);
    padding: 1.5rem 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    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.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #ff8c42;
}

nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff8c42;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    margin-bottom: 4rem;
    padding: 2.5rem 0;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #4a5a6f;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a5a6f;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #ff8c42;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    font-size: 1rem;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 1.3rem;
}

p.tagline {
    font-size: 1.5rem;
    color: #ff8c42;
    font-weight: 700;
    margin-bottom: 2rem;
}

#page-header,
#hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(74, 90, 111, 0.08) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #ff8c42;
}

.contact-details {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff8c42;
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.8rem;
}

.contact-details strong {
    color: #4a5a6f;
    font-weight: 700;
}

form {
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #e0e0e0;
}

fieldset {
    border: none;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

legend {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a5a6f;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #ff8c42;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

button,
input[type="submit"] {
    background: linear-gradient(135deg, #ff8c42 0%, #ff7a2a 100%);
    color: #ffffff;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover,
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

a {
    color: #4a5a6f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff8c42;
}

footer {
    background-color: #2a3a4f;
    color: #ffffff;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer p {
    margin-bottom: 0.8rem;
}

footer a {
    color: #ff8c42;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.2rem;
    }
}