:root {
    --primary-color: #003366;
    --accent-color: #0080ff; 
    --light-bg: #f8f8f8; 
    --text-color: #333;
    --font-family: 'Roboto', sans-serif;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.primary-cta {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.primary-cta:hover {
    background-color: #0080ff;
    border-color: #0080ff;
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 10px 0; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    display: flex; 
    align-items: center;
}

.logo a, 
.logo img {
    height: 100%; 
    width: auto;
    object-fit: contain; 
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    padding: 8px 15px; 
    display: block;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.header-cta {
    display: none; 
}

.hero-section {
    background-image: url('../images/outside-view-1.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative; 
    padding: 150px 0;
    text-align: center;
    color: #fff; 
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: -1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .contact-info {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
    text-align: center;
    margin-top: 40px; 
    margin-bottom: 30px; 
}

.services-grid-row-2 {
    max-width: 600px; 
    margin-left: auto;
    margin-right: auto;
    margin-top: 0; 
}

@media (min-width: 1024px) {
    .services-grid-row-1 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.facility-section {
    background-color: var(--primary-color);
    color: #fff;
}

.facility-section h2 {
    color: var(--accent-color);
    text-align: left;
}

.facility-section .content-text {
    padding-right: 40px;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.split-content .content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-content ul {
    list-style: none;
    margin-top: 20px;
}

.split-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section h2 {
    color: var(--accent-color);
}

.contact-section .contact-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form input[type="file"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-family);
}

.contact-form textarea {
    resize: vertical;
}

.contact-details {
    text-align: center;
    margin-top: 20px;
}

.contact-details address {
    margin-top: 5px;
    font-style: normal;
}

.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.development-notice {
    background-color: #ffcc00;
    color: #333;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9em;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .split-content {
        flex-direction: column;
        text-align: center;
    }
    .facility-section .content-text {
        padding-right: 0;
    }
    .facility-section h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 10px;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-section {
        padding: 100px 0;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .header-cta {
        display: inline-block;
    }
}

