body {
    background-image: url('./background.png');
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 40px 40px 40px;
    color: white;
}

/* Thinner navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Top header section with logo pushed further right and height compacted */
.top-header-area {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 0 0 10px 0; /* Reduced bottom padding to pull core services up */
    min-height: 420px;
}

.hero-content {
    flex: 1;
    max-width: 55%;
}

.logo-container {
    position: absolute;
    right: -25px; /* Pushed further right past the container edge */
    top: -20px;
    text-align: right;
}

.large-logo {
    height: 480px;
    width: auto;
    display: block;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
}

.cta-button:hover {
    background-color: #ddd;
}

/* Core services pulled up closer */
.services-section {
    padding-top: 0;
    max-width: 1200px;
    margin: 0 auto;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #000;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.service-bullets {
    margin: 0;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-bullets li {
    margin-bottom: 8px;
}

.secondary-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

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

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}

.footer {
    text-align: center;
    padding: 15px;
    background-color: #000;
    color: #fff;
}
