/* Services Page Styles */
:root {
    --primary-color: #0A2342;      /* Kept dark blue for primary */
    --secondary-color: #2CA4D6;    /* Kept blue for secondary */
    --accent-color: #2CA4D6;       /* Changed to match logo's red color */
    --text-color: #333333;         /* Kept dark gray for text */
    --background-color: #F4F4F4;   /* Kept light gray for background */
    --white: #FFFFFF;              /* White */
    --light-gray: #EEEEEE;         /* New light gray for container backgrounds */
    --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added shadow for header definition */
}

.FutureTense {
	font-family: FutureTense;
    font-weight: 100;
    text-transform: lowercase;
}

main {
    width: auto;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background-color: var(--white); /* Changed from primary-color to white */
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow for definition */
}

.site-logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.site-logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo-subtext {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: -5px;
}

header nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
    font-size: 1.30rem;
}

header nav ul li a {
    color: var(--primary-color); /* Changed from white to primary color */
    text-decoration: none;
    font-weight: 100;
    transition: color 0.3s ease;
    position: relative;
}

.site-logo img {
    max-height: 60px; /* Adjust based on your logo size */
    width: auto;
}

header nav ul li a:hover, header nav ul li a.active {
    color: var(--accent-color);
}

header nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.services-hero {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 5px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-hero h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 100;
    margin-bottom: 30px;
    line-height: 1.4;
}

.services-description h2 {
    color: var(--secondary-color);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.services-list {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.services-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.services-list li::before {
    content: '●';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.technical-documentation, .quality-certificate {
    margin-top: 30px;
    text-align: center;
}

.technical-documentation h3, .quality-certificate h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.image-placeholders {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.image-placeholder {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 50px;
    border-radius: 8px;
    width: 45%;
    text-align: center;
}

.certificate-placeholder {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 30px;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--white); /* Changed from primary-color to white */
    color: var(--primary-color); /* Changed text color */
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Added subtle top border */
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 1168px) {
    .site-logo {
        position: static;
        text-align: center;
        margin-bottom: 10px;
        transform: none;
    }

    header {
        flex-direction: column;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .services-hero {
        margin: 20px 15px;
        padding: 25px;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-description h2 {
        font-size: 1.5rem;
    }

    .image-placeholders {
        flex-direction: column;
    }

    .image-placeholder {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 20px;
    }

    .services-hero h1 {
        font-size: 1.6rem;
    }
}

.footer-img {
    max-height: 45px;
    width: auto;
    margin-bottom: 10px;
}

.accent-text {
    color: var(--accent-color);
    font-weight: 100;
}

.footer-accent-text {
    color: var(--primary-color);
    font-weight: 600;
}
