:root {
    --primary-white: #FFFFFF;
    --primary-light-blue: #D5E5E9;
    --primary-medium-blue: #5391A1;
    --primary-dark-blue: #046181;
    --accent-dark-orange: #F7931D;
    --accent-light-orange: #FBAF3F;
    --font-family-main: 'Comfortaa', cursive;
    --text-color-default: #333;
    --text-color-secondary: #555;
    --background-color-light: #f9f9f9;
    --background-color-dark: #333;
    --shadow-color: 220, 40%, 80%;
    --shadow-elevation-low:
        0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34),
        0.4px 0.8px 1px -1.2px hsl(var(--shadow-color) / 0.34),
        1px 2px 2.5px -2.5px hsl(var(--shadow-color) / 0.34);
    --shadow-elevation-medium:
        0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.36),
        0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.36),
        2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.36),
        5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.36);
}

body {
    margin: 0;
    font-family: var(--font-family-main);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color-default);
    background-color: var(--primary-white);
    /* Try to manage the scroll bar messing with layout */
    position: relative;
    left: calc((100vw - 100%) / 2);
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 3rem 0;
}

h1, h2, h3 {
    font-family: var(--font-family-main);
    font-weight: 700;
    color: var(--primary-dark-blue);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-dark-orange);
}

a {
    color: var(--primary-medium-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-dark-orange);
}

/* Header/Hero Section */
.hero {
    background-color: var(--primary-light-blue);
    padding: 4rem 1rem;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-white);
    box-shadow: var(--shadow-elevation-medium);
}

.business-name {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
}

.tagline {
    margin: 0.5rem 0 0;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-medium-blue);
}

/* About Section */
.about-section {
    text-align: center;
    max-width: 800px;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
}

/* Services Section */
.services-section {
    padding-top: 0;
}

.services-section .service-item-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-item {
    background-color: var(--primary-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: var(--shadow-elevation-low);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevation-medium);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: var(--primary-dark-blue);
}

/* Process Section */
.process-section {
    background-color: var(--background-color-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.process-step {
    text-align: center;
    flex: 1;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-light-orange);
    color: var(--primary-white);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-elevation-low);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-dark-blue);
    color: var(--primary-white);
}

.contact-section .container {
    max-width: 700px;
    text-align: center;
}

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

.contact-section h2::after {
    background-color: var(--accent-light-orange);
}

.contact-section p {
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 2rem;
    background-color: var(--primary-white);
    color: var(--primary-dark-blue);
    padding: 2rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: var(--shadow-elevation-medium);
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.contact-info a {
    font-weight: 700;
    color: var(--primary-dark-blue);
}

.contact-info a:hover {
    color: var(--accent-dark-orange);
}


/* Footer */
footer {
    background-color: var(--primary-medium-blue);
    color: var(--primary-white);
    text-align: center;
    padding: 1.5rem 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-section .service-item-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .business-name {
        font-size: 2.8rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
    .logo {
        width: 120px;
        height: 120px;
    }
    h2 {
        font-size: 2rem;
    }
    .process-steps {
        flex-direction: column;
    }
    .container {
        padding: 2rem 0;
    }
}

/* Navigation Menu */
.main-nav {
    background-color: var(--primary-medium-blue);
    padding: 1rem 0;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.main-nav ul li {
    display: inline-block;
    margin: 0 1.5rem;
}

.main-nav ul li a {
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--accent-light-orange);
}
