/* Basic Reset & Body Styling */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; /* Modern system font stack */
    background-color: #FFFFFF; /* White background */
    color: #333333; /* Dark grey text */
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: inherit; /* Use body font, adjust weight/style */
    font-weight: 700; /* Bolder for headings */
    color: #333333; /* Dark text for headings */
}

h1 {
    text-transform: uppercase;
    font-size: 2.8em;
}

h2 {
    color: #D45F35; /* Clay Orange accent for section titles */
    font-size: 2.2em;
    margin-bottom: 40px;
}

h3 {
    color: #D45F35; /* Clay Orange accent for sub-headings */
    font-size: 1.4em;
    margin-bottom: 15px;
}

a {
    color: #D45F35; /* Clay Orange accent for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B54D2A; /* Darker Clay Orange on hover */
    text-decoration: none;
}

/* Layout Containers */
.hero-section,
.current-offering,
.upcoming-innovation,
.cta-section,
footer {
    padding: 80px 20px; /* Increased padding for white space */
    max-width: 1000px; /* Slightly narrower for focus */
    margin: 0 auto; /* Center content */
    text-align: center;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600; /* Semi-bold */
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-primary {
    background-color: #D45F35; /* Clay Orange background */
    color: #FFFFFF; /* White text */
    border-color: #D45F35;
}

.btn-primary:hover {
    background-color: #B54D2A; /* Darker Clay Orange */
    border-color: #B54D2A;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: #D45F35; /* Clay Orange text */
    border-color: #D45F35;
}

.btn-secondary:hover {
    background-color: rgba(212, 95, 53, 0.1); /* Slight orange background */
    color: #B54D2A; /* Darker Clay Orange */
    border-color: #B54D2A;
}

/* Section Specific Styling */
.hero-section {
    background-color: #f8f9fa; /* Light off-white for hero */
    padding: 100px 20px;
}

.hero-content h1 {
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.3em;
    color: #555555; /* Slightly lighter grey for subtitle */
    max-width: 600px;
    margin: 0 auto;
}

.current-offering {
    /* Optional: Add subtle background or border */
}

.offering-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.offering-item {
    background-color: #FFFFFF; /* White background for items */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0; /* Light grey border */
    flex-basis: 45%;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    text-align: left; /* Align item content left */
}

.offering-item ul,
.innovation-details ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.offering-item li,
.innovation-details li {
    margin-bottom: 10px; /* Increased spacing */
    position: relative;
    padding-left: 25px; /* Space for custom bullet */
    color: #555555; /* Match subtitle color */
}

.offering-item li::before,
.innovation-details li::before {
    content: "–"; /* Simple dash */; /* Chevron or other icon */
    color: #D45F35; /* Clay Orange accent color */
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.upcoming-innovation {
    background-color: #f8f9fa; /* Match hero background */
}

.innovation-details ul {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* CTA Section Specific Styling */
.cta-section {
    background-color: #D45F35; /* Clay Orange background */
    color: #FFFFFF;
}

.cta-section h2 {
    color: #FFFFFF;
}

/* Override button styles ONLY within CTA section */
.cta-section .btn-primary {
    background-color: #FFFFFF;
    color: #D45F35; /* Orange text */
    border-color: #FFFFFF;
}
.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #B54D2A; /* Darker orange text */
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: #FFFFFF;
}


footer {
    margin-top: 0;
    border-top: 1px solid #e0e0e0; /* Light grey border */
    padding: 40px 20px;
    font-size: 0.9em;
    color: #888888; /* Lighter grey for footer */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    .hero-content p { font-size: 1.1em; }
    h2 { font-size: 1.8em; }
    .offering-details {
        flex-direction: column;
        align-items: center;
    }
    .offering-item {
        flex-basis: 90%;
        min-width: unset;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8em; }
    .hero-content p { font-size: 1em; }
    h2 { font-size: 1.6em; }
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 80%;
        margin: 10px 0;
    }
}



/* Footer Social Links Styling */
.footer-social {
    font-size: 0.85em; /* Smaller text */
    color: #aaaaaa; /* Light grey text */
    margin-bottom: 5px; /* Space between lines */
}

.footer-social a {
    color: #888888; /* Slightly darker grey for link */
    text-decoration: none;
}

.footer-social a:hover {
    color: #D45F35; /* Clay orange on hover */
}

