:root {
    --primOne: #003B6D; /* Midnight Blue */
    --primTwo: #6699CC; /* Blue Sky */
    --primThree: #336A9C /* Midnight Sky */ ;
    --secOne: #676767; /* Dim gray */
    --secTwo: #BDBDBD; /* Silver */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: white;
    color: #333;
    line-height: 1.6;
}

/* Header */
.site-header {
    background-color: var(--primTwo);
    padding: 20px;
    color: var(--primOne);
}

.header-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.logo-placeholder img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-container h1 {
    font-size: 2.2rem;
    font-weight: bold;
}

.title-container p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secOne);
}

ul.dropdown-menu {
    display: none;
}

/* Navigation */
.primary-nav {
    background-color: var(--primOne);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    width: auto;
}

.nav-links li {
    width: auto;
    text-align: center;
    position: relative;
}

.nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}


.nav-links a:hover {
    background-color: var(--secOne);
    color: white;
}

.nav-links li.active > a {
    background-color: var(--primThree);
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--secTwo);
    list-style: none;
    width: 100%;
    z-index: 10;
}

.dropdown-menu a {
    color: var(--primOne);
    padding: 10px;
    font-size: 0.9rem;
}

.consult-btn {
    background-color: var(--primOne);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
    text-align: center;
    width: auto;
    margin-left: auto;
    transition: background-color 0.3s ease;
}

.consult-btn:hover {
    background-color: var(--primThree);
}

/* Main Content Layout */
.main-content {
    max-width: 90vw;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-section, .about-section-fullpage {
    max-width: 100vw;
}

.about-section h2, .about-section-fullpage h2 {
    color: var(--primOne);
    margin-bottom: 20px;
    font-size: 2rem;
    width: 60vw;
}

.image-gallery {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.img-placeholder img {
    flex: 1;
    aspect-ratio: 4/3;
    background-color: #d9d9d9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-section p, .about-section-fullpage p {
    margin-bottom: 15px;
    color: var(--secOne);
}

.about-section a, .about-section-fullpage a {
    color: var(--primTwo);
}

/* Form Section */
.form-container {
    background-color: var(--primTwo);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: max-content;
}

.form-container h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column h3 {
    color: var(--primOne);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
}

.submit-btn {
    background-color: var(--primOne);
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primThree);
}

.site-footer {
    background-color: var(--primOne);
    height: 40px;
    margin-top: 40px;
    color: var(--secTwo);
    text-align: left;
    padding: 10px;
}

@media (min-width: 762px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .about-section {
        max-width: 50vw;
    }
    .primary-nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        flex-direction: row;
        width: auto;
    }

    .nav-links li {
        width: auto;
    }

    .dropdown-menu {
        width: 200px;
    }

    .consult-btn {
        width: auto;
        margin-left: auto;
    }

    .main-content {
        flex-direction: row;
    }

    .about-section {
        flex: 1;
    }

    .about-section-fullpage {
        flex: 2;
    }

    .form-section {
        flex: 1;
    }

    .form-grid {
        flex-direction: row;
    }
    
    .column {
        flex: 1;
    }
}