:root {
    --white: #FFFFFF;
    --aulos-green: #0A4B39;
    --accent-light-blue-green: #68A691;
    --black: #000000;
    --accent-blue: #0A3D4B;
    --light-grey: #F0F0F0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin: 0;
    line-height: 1.2em; /* P1 line height */
    color: var(--black);
}

.no-js body {
    opacity: 0;
}

.fouc body {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: 0em;
    text-transform: none;
    color: var(--black); /* Default heading color */
}

h1 {
    font-size: 3rem; /* 48px */
}

h2 {
    font-size: 2rem; /* 32px */
}

h3 {
    font-size: 1.5rem; /* 24px */
}

h4 {
    font-size: 1.2rem; /* 18px */
}

p1, p2, p3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Updated to 400 */
    letter-spacing: 0em;
    text-transform: none;
    font-size: 1.2rem; /* Updated to 1.2rem to match .p1 */
    color: var(--black); /* Default paragraph color */
    font-style: normal; /* Ensure normal style */
}

/* Paragraph sizes */
p1 { font-size: 1.2rem; font-weight: 400; line-height: 1.2em; font-style: normal; }
p2 { font-size: 0.9rem; font-weight: 400; line-height: 1.2em; font-style: normal; }
p3 { font-size: 0.7rem; font-weight: 400; line-height: 1.2em; font-style: normal; }

header {
    background: var(white);
    padding: 1rem 0;
    border-bottom: 3px solid var(--white);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Increased horizontal padding */
}

.logo {
    /* Site Title - removed font styles as it's now an image */
    /* font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--aulos-green); */
    height: 50px; /* Adjust as needed */
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Mobile Site Title adjustment for image */
@media (max-width: 768px) {
    .logo {
        height: 30px; /* Adjust for mobile logo size */
    }
}

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

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif; /* Site Navigation */
    font-weight: 400;
    font-size: 0.875rem; /* Paragraph 2 */
    color: var(--black);
    text-transform: none;
    transition: color 0.3s ease; /* Smooth transition for hover */
}

.nav-links a:hover {
    color: var(--aulos-green); /* Change color on hover */
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #333;
    margin-bottom: 4px;
    border-radius: 5px;
}

/* Buttons */
.contact-button, .subscribe button {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem; /* 16px */
    letter-spacing: 0em;
    text-transform: uppercase;
    display: inline-block;
    background: var(--aulos-green); /* Primary button color */
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-button:hover, .subscribe button:hover {
    background: var(--accent-light-blue-green); /* Hover effect */
}

/* Miscellaneous text styles (apply to relevant elements as needed) */
.misc-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: 0em;
    text-transform: none;
    font-size: 1rem; /* 16px */
    color: var(--black); /* Default miscellaneous text color */
}

/* Announcement Bar - assuming this would be a p3 */
.announcement-bar {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.75rem; /* Paragraph 3 */
    line-height: 1.2em;
    letter-spacing: 0em;
    text-transform: none;
    color: var(--black);
}

/* Content Link Block - assuming this would be a p2 */
.content-link-block {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.875rem; /* Paragraph 2 */
    line-height: 1.2em;
    letter-spacing: 0em;
    text-transform: none;
    color: var(--accent-blue); /* Example link color */
}


.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px; /* Increased height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white); /* Text color over background image */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background-color: var(--aulos-green); /* Fallback or overlay */
    position: relative; /* Needed for pseudo-element positioning */
    overflow: hidden; /* Ensures the curved shape is contained */
    padding: 80px 20px; /* Add vertical and horizontal padding */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); /* Subtle diagonal cut */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--aulos-green);
    opacity: 0.7; /* Adjust opacity for the green hue */
    z-index: 1; /* Place above background image but below text */
}

.hero h1, .hero p {
    position: relative; /* Bring text above the overlay */
    z-index: 2;
    text-align: left; /* Align text to the left */
    max-width: 1200px; /* Limit width for better readability */
    margin: 1rem auto 1rem 20px; /* Adjust vertical spacing and align left with padding */
}

.hero h1 {
    color: var(--white); /* Ensure heading is visible over background */
    font-size: 3rem; /* Set font size to 3rem */
    line-height: 1.2em; /* Set line height to 1.2em */
    font-weight: 400; /* Set font weight to 400 */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* Text shadow for depth */
}

.hero p {
    color: var(--white); /* Ensure paragraph is visible over background */
    font-family: 'Roboto', sans-serif; /* Set font-family to Roboto */
    font-size: 1rem; /* Set font size to 1rem */
    line-height: 1.2em; /* Set line height to 1.2em */
    text-align: left; /* Align text to the left */
    font-weight: 400; /* Set font weight to 400 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* Subtle text shadow */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 60px 15px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); /* Adjust for smaller screens */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

.services, .contact-us, .industries, .partner-info, .subscribe, .investment-diagram {
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2, .contact-us h2, .industries h2, .subscribe h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.service-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}


.contact-us {
    text-align: center;
    background: var(--light-grey);
}

.industries {
    background: #1a4d5c; /* Dark teal/navy blue background */
    color: var(--white); /* Default text color for this section */
    padding: 6rem 20px; /* Adjust padding for visual interest */
    max-width: none; /* Ensure full-width coverage */
    margin: 0;
    position: relative;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%); /* Subtle diagonal cuts top and bottom */
}

.industries h2 {
    color: var(--white); /* Change title color to white */
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.industries .industry-list {
    display: flex; /* Change to flex for single row */
    justify-content: center; /* Center items horizontally */
    gap: 60px; /* Increased gap between items */
    text-align: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.industry-item {
    font-family: 'Oswald', sans-serif;
    background: none; /* Remove background */
    color: var(--white); /* Text color on dark background */
    padding: 0; /* Remove padding */
    border-radius: 0; /* Remove border-radius */
    font-weight: 400; /* Change font weight to 400 */
    font-size: 1.5rem; /* Change font size to 1.5rem */
    line-height: 1.2em; /* Set line height to 1.2em */
    min-height: 200px; /* Set a standard height for consistency */
    display: flex;
    flex-direction: column; /* Stack icon and text */
    align-items: center; /* Center items horizontally */
    justify-content: flex-start; /* Align items to the top */
    gap: 5px; /* Reduce space between icon and text by 50% */
    flex: 0 0 auto; /* Prevent stretching */
    min-width: 75px; /* Set a minimum width for items */
}

.industry-icon {
    width: 60px; /* Make icons larger */
    height: auto;
    margin-bottom: 10px; /* Space between icon and text */
}

.investment-diagram {
    text-align: center;
}

.diagram-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.partner-info {
    padding: 4rem 20px; /* Ensure consistent padding */
    max-width: 1200px;
    margin: 0 auto;
    display: flex; /* Enable flexbox for two-column layout */
    align-items: center; /* Vertically align items */
    gap: 40px; /* Space between image and text */
}

.partner-info .partner-details {
    background: none; /* Remove background */
    padding: 0; /* Remove padding */
    border-radius: 0; /* Remove border-radius */
    box-shadow: none; /* Remove box-shadow */
    text-align: left; /* Left align text */
    flex: 1; /* Allow text content to take available space */
}

.partner-photo {
    width: 300px; /* Increased image size by 50% */
    height: 300px;
    border-radius: 0; /* Remove circular border */
    object-fit: cover;
    margin-bottom: 0; /* Remove bottom margin */
    border: none; /* Remove green border */
    flex-shrink: 0; /* Prevent image from shrinking */
}

.partner-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.partner-info em {
    display: block;
    margin-bottom: 1rem;
    color: #666;
}

.social-links {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 24px; /* Adjust size of social icons */
    height: 24px;
    vertical-align: middle;
}

.partner-info p {
    margin-bottom: 1rem;
}

.broker-check {
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.partner-info a {
    color: var(--accent-blue);
    text-decoration: none;
}

.partner-info a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for partner info */
@media (max-width: 768px) {
    .partner-info {
        flex-direction: column; /* Stack image and text on small screens */
        text-align: center; /* Center align on small screens */
        gap: 20px;
    }

    .partner-photo {
        margin-bottom: 1.5rem; /* Add some space below image */
    }

    .partner-info .partner-details {
        text-align: center; /* Center align text on small screens */
    }
}

.subscribe {
    background: var(--light-grey);
    text-align: center;
}

.subscribe form {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.subscribe input[type="email"] {
    padding: 0.8rem;
    border: 1px solid var(--accent-light-blue-green);
    border-radius: 5px 0 0 5px;
    width: 300px;
    max-width: 70%;
    box-sizing: border-box;
}

.subscribe button {
    border-radius: 0 5px 5px 0;
    margin-top: 0;
}

footer {
    background: var(--aulos-green);
    color: var(--white);
    text-align: center; /* Center align all text and inline-block elements */
    padding: 2rem 20px;
    font-size: 0.9rem;
}

.footer-logo {
    margin-bottom: 1rem; /* Add some space below the logo if needed */
}

.footer-logo img {
    max-width: 150px; /* Adjust as needed */
    height: auto;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
}

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

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: var(--accent-light-blue-green);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        height: 30px; /* Mobile Site Title */
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        background: var(--white);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--light-grey);
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .service-items {
        flex-direction: column;
        align-items: center;
    }

    .subscribe form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe input[type="email"] {
        border-radius: 5px;
        margin-bottom: 10px;
        width: 80%;
    }

    .subscribe button {
        border-radius: 5px;
        width: 80%;
    }

    /* Responsive adjustments for industries section */
    @media (max-width: 768px) {
        .industries {
            padding: 4rem 15px;
            clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); /* Adjust for smaller screens */
        }

        .industries .industry-list {
            gap: 20px;
        }

        .industry-icon {
            width: 50px;
        }
    }
}
