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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

nav li {
    position: relative;
}

nav a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #14b8a6;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    min-width: 160px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-menu a {
    display: block;
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background: rgba(20, 184, 166, 0.12);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: flex;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.2;
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    opacity: 0.9;
}

/* Quote of the Day */
.quote-box {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 300px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1f2937;
}

.quote-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #14b8a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-style: normal;
}

.quote-text {
    font-style: italic;
}

/* Contact Page */
header {
    margin-bottom: 0;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.contact-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1f2937;
}

.form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
    margin-bottom: -0.5rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #14b8a6;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"] {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.4);
}

button[type="submit"]:active {
    transform: translateY(0);
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .quote-box {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        font-size: 0.85rem;
    }

    .contact-container {
        padding: 6rem 1.5rem 3rem;
    }

    .contact-container h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }
}

