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

:root {
    --teal: hsl(177, 94%, 35%);
    --orange: #f1821a;
    --yellow: #fdd831;
    --green: #6A994E;
    --brown: #8B5A3C;
    --cream: #FAF3E0;
    --dark: #055664;
    --light-gray: #EDF2F4;
    --tuqoise: #40E0D0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--cream);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 243, 224, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--teal);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--teal);
}

#contact {
    text-align: center;
    background: linear-gradient(60deg, var(--teal), var(--tuqoise));
    color: white;
    border-radius: 30px;
    padding: 4rem 2rem;
}

#contact h2 {
    color: white;
}

#contact h2::after {
    background: white;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--teal);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    padding: 2rem;
    background: var(--dark);
    color: white;
}
