/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Enhanced Palette */
    --navy-blue: #1a3a5c;
    --dark-navy: #0f2942;
    --gold: #d4af37;
    --bright-gold: #f4c430;
    --white: #ffffff;
    --light-cream: #faf8f3;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-gray: #555555;
    --accent-blue: #2c5f8d;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: #e8e8e8;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    background: transparent;
    padding: 0;
    margin: -10px 0;
}

.logo img {
    height: 95px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - 40px);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.92) 0%, rgba(44, 95, 141, 0.88) 100%),
                url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--bright-gold) 100%);
    color: var(--navy-blue);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bright-gold) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--navy-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 58, 92, 0.4);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-cream) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about h2 {
    text-align: center;
    font-size: 42px;
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--bright-gold) 100%);
    margin: 20px auto 50px;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,248,243,1) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(26, 58, 92, 0.15);
    border-left-width: 8px;
}

.feature-box:hover::before {
    top: -20%;
    right: -20%;
}

.feature-box h3 {
    color: var(--navy-blue);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 16px;
    position: relative;
}

/* Projects Section */
.projects {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--light-cream) 0%, var(--white) 100%);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 58, 92, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.projects h2 {
    text-align: center;
    font-size: 42px;
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.projects h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--bright-gold) 100%);
    margin: 20px auto 50px;
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 58, 92, 0.12);
    transition: all 0.4s ease;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(26, 58, 92, 0.2);
}

.project-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-card:nth-child(1) .project-image {
    background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.project-card:nth-child(2) .project-image {
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.project-card:nth-child(3) .project-image {
    background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.project-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(26, 58, 92, 0.7) 0%, transparent 100%);
}

.project-info {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.project-info h3 {
    color: var(--navy-blue);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-info .location {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 15px;
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.project-info p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(44, 95, 141, 0.9) 100%),
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.cta .btn {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--navy-blue) 100%);
    color: var(--white);
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    opacity: 0.9;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    transition: left 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
    opacity: 1;
    padding-left: 25px;
}

.footer-section ul li a:hover::before {
    left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(44, 95, 141, 0.9) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* Legal Content */
.legal-content {
    padding: 60px 20px;
    background-color: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--navy-blue);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    color: var(--navy-blue);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-cream) 0%, var(--white) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--navy-blue);
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after,
.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--bright-gold) 100%);
    border-radius: 2px;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 16px;
}

.info-box {
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 248, 243, 0.8) 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 5px 20px rgba(26, 58, 92, 0.08);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.12);
    border-left-width: 8px;
}

.info-box h3 {
    color: var(--navy-blue);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-box p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(250,248,243,0.9) 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(26, 58, 92, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 58, 92, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-cream) 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    position: relative;
    animation: slideDown 0.5s ease;
    box-shadow: 0 20px 80px rgba(26, 58, 92, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(26, 58, 92, 0.05);
}

.close-modal:hover {
    color: var(--navy-blue);
    background-color: rgba(26, 58, 92, 0.1);
    transform: rotate(90deg);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.3);
    animation: scaleIn 0.6s ease 0.3s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content h2 {
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .logo img {
        height: 70px;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .about h2,
    .projects h2 {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about h2,
    .projects h2,
    .cta h2 {
        font-size: 26px;
    }

    .about,
    .projects {
        padding: 60px 20px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .feature-box,
    .info-box {
        padding: 20px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 28px;
    }

    .modal-content {
        padding: 35px 25px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .page-header {
        padding: 70px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}

/* Additional decorative elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background-color: var(--gold);
    color: var(--navy-blue);
}

::-moz-selection {
    background-color: var(--gold);
    color: var(--navy-blue);
}
