/* Import the NATS font */
@import url('https://fonts.googleapis.com/css2?family=Nats&display=swap');

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

header {
    text-align: center;
    width: 100%;
    background-color: #f9f9f9;
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 1000; /* Ensure header is above other content */
}

header h1 {
    font-size: 48px;
    font-family: 'Nats', sans-serif; /* Applying NATS font */
    margin-bottom: 10px;
}

header hr {
    width: 100%; /* Full width line */
    border: 1px solid #ccc;
}

/* Updated margin-top to account for header height */
.about-us-section {
    text-align: center;
    max-width: 800px;
    margin: 200px 0 40px; /* Increased top margin to 100px to account for fixed header */
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.about-us-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Nats', sans-serif;
}

.about-us-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.services-section {
    text-align: center;
    margin: 40px 0;
}

.services-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.services-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.services-buttons button {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.services-buttons button:hover {
    background-color: #f0f0f0;
}

.service-display {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 8px;
    text-align: left;
}

.service-display h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-display p {
    font-size: 14px;
    color: #666;
}
