@charset "utf-8";
/* CSS Document */

/* =========================
   Base Layout & Typography
   ========================= */

body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #1e1e1e;
    background: #fffefb;
    line-height: 1.6;
}

header {
    background: #032E47;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

header h1 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

nav {
    background: #d4af37;
    padding: 1rem;
    text-align: center;
}

nav a {
    color: #032E47;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    /*font-family: Georgia, "Times New Roman", Times, serif;*/
	font-family: 'Inria Serif', 'Times New Roman', serif;
	font-size: 28px;
    margin-bottom: 1rem;
    color: #032E47;
}

p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* =========================
   Buttons & Calls to Action
   ========================= */

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #032E47;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #fbe6a1;
}

/* =========================
   Services / Cards
   ========================= */

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



/* =========================
   Form Styling
   ========================= */

form {
    max-width: 600px;
    margin: 2rem auto 0;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #032E47;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1.4rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    background-color: #ffffff;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #032E47;
    box-shadow: 0 0 0 2px rgba(3, 46, 71, 0.12);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

button,
input[type="submit"] {
    display: block;
    width: 100%;
    background: #d4af37;
    color: #032E47;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button:hover,
input[type="submit"]:hover {
    background: #fbe6a1;
}

button:active,
input[type="submit"]:active {
    transform: translateY(1px);
}

/* =========================
   Footer
   ========================= */

/*footer {
    background: #032E47;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
}*/


/* =========================
   Footer
   ========================= */
footer {
    background: #032E47;
    color: #fff;
    text-align: center;
    /*padding: 2rem 1rem;*/
	padding: 1.2rem 1rem; 
    margin-top: 4rem;
}

footer p,
footer a,
footer span {
    font-size: 0.85rem;     /* Smaller text for everything in footer */
    line-height: 1.5;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* =========================
   Responsive Adjustments
   ========================= */

@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    nav a {
        display: block;
        margin: 0.5rem 0;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }
}


   