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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* allows nav to move below logo on small screens */
}

.nav a {
    margin-left: 1rem;
    /* spacing between nav links */
}

/* Optional: Stack nav below logo on narrow screens */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        margin-top: 1rem;
    }
}

.logo {
    display: flex; /* Align logo SVG and text horizontally */
    align-items: center; /* Vertically center SVG with text */
    gap: 0.5em; /* Space between SVG and text, relative to font size */
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.logo-svg {
    height: 1em; /* Makes the SVG height equal to the parent's font-size (1.8rem) */
    width: auto; /* Maintain aspect ratio */
    /* Add a small margin-right if gap property is not supported or for fine-tuning */
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2c3e50;
}

.hero {
    padding: 4rem 0;
    text-align: center;
    background: #34495e;
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.advantages {
    padding: 4rem 0;
    background: white;
}

.process {
    padding: 4rem 0;
    background: #f8f9fa;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 300;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.process-step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

.early-adopter {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #3498db;
}

.early-adopter h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.early-adopter p {
    color: #555;
    margin-bottom: 1.5rem;
}

.pilot-calendar-container {
    margin-top: 1.5rem; /* Space above the calendar */
    margin-bottom: 1.5rem; /* Space below the calendar */
    padding: 1.5rem;
    background-color: #e9ecef; /* Light background for the calendar area */
    border-radius: 6px;
    border: 1px solid #dee2e6;
    text-align: left; /* Override parent's text-align: center for this block */
}

.pilot-calendar-container h4 {
    margin-bottom: 1rem;
    color: #495057; /* Darker grey for the heading */
    font-size: 1.1rem;
    font-weight: 500; /* Make it slightly less heavy than section titles */
}

.pilot-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem; /* Slightly reduced margin */
    border-radius: 4px;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.pilot-slot:last-child {
    margin-bottom: 0;
}

.pilot-slot .slot-date {
    font-weight: 500;
    color: #343a40;
}

.pilot-slot .slot-status {
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 12px; /* Pill shape */
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure link status badges have sufficient contrast */
.pilot-slot a.slot-status {
    text-decoration: none; /* Ensures no underline on the link */
}

.pilot-slot a.slot-status {
    text-decoration: none; /* Ensures no underline on the link */
    /* Inherits color, background, padding etc. from .slot-status & .slot-available .slot-status */
}

.slot-taken {
    background-color: #f8f9fa;
    color: #555; /* Improved contrast */
    border-color: #e9ecef;
}
.slot-taken .slot-date {
    text-decoration: line-through;
    color: #555; /* Improved contrast */
}
.slot-taken .slot-status { background-color: #555; color: white; } /* Improved contrast */

.slot-available {
    background-color: #e6f7ff; /* Light success green: #d4edda; Light blue: #e6f7ff */
    color: #003366; /* Improved contrast */
    border-color: #b3d7ff; /* Border success green: #c3e6cb; Border blue: #b3d7ff */
}
.slot-available:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Slightly more pronounced hover effect */
}
.slot-available .slot-status { background-color: #28a745; color: white; } /* Green for open */

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 300;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.advantage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #ecf0f1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 1.1rem;
    border: 1px solid #bdc3c7;
    flex-shrink: 0;
}

.advantage-card h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.advantage-card ul {
    list-style: none;
    padding: 0;
}

.advantage-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.advantage-card li:before {
    content: '✔'; /* Changed from âœ“ to ensure correct rendering */
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.photo-section {
    background: #ecf0f1;
    padding: 4rem 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.photo-placeholder {
    background: white;
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    color: #555; /* Improved contrast */
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.photo-placeholder:hover {
    border-color: #95a5a6;
    background: #f8f9fa;
}

.photo-item { /* Styles for containers holding actual images */
    background: white;
    border-radius: 8px;
    height: 250px; /* Match placeholder height for grid consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Important for object-fit */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0; /* Subtle border for image items */
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fills the container, cropping if aspect ratio differs */
    display: block; /* Removes any extra space below the image */
}


footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: white; /* Ensure links are visible on dark background */
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

footer a:hover {
    text-decoration: underline; /* Add underline on hover for distinction */
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------*\
    #CUSTOMER-SPOTLIGHT
\*------------------------------------*/

.customer-spotlight {
    padding: 4rem 0; /* Consistent padding with other sections */
    background: white; /* Alternating background for visual separation */
}

.customer-spotlight h2 {
    text-align: center;
    font-size: 2.5rem; /* Consistent with other section titles */
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 300;
}


.customer-spotlight .spotlight-content {
    background-color: #f8f9fa; /* A slightly offset background for the content box */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* Ensures proper clearing of floated elements */
}

.customer-spotlight .customer-logo {
    float: left;
    max-width: 150px;
    height: auto;
    margin: 0 30px 20px 0; /* Right and bottom margin for text spacing */
    object-fit: contain; /* Ensures logo is scaled nicely if it has whitespace */
}

.customer-spotlight .spotlight-text p {
    margin-bottom: 1rem; /* Space between paragraphs */
    color: #333; /* Ensure good contrast on the new background */
    line-height: 1.7;
}

.customer-spotlight .spotlight-text p:last-child {
    margin-bottom: 0;
}

/*------------------------------------*\
    #CONTACT-FORM-SECTION
\*------------------------------------*/

.contact-form-section {
    padding: 4rem 0;
    background: #f8f9fa; /* Consistent with other utility sections */
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem; /* Reduced margin for tighter layout with intro text */
    font-weight: 300;
}

.contact-form-section .contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 700px; /* Constrain width of intro text */
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section .google-form-container {
    /* This container holds the h3, p, and iframe for the contact form */
    max-width: 700px; /* Constrain width for better readability of text */
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Center the h3 and p */
}

.contact-form-section .google-form-container h3 {
    font-size: 2rem; /* Slightly smaller than main section h2 */
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 300; /* Consistent with other titles */
}

.contact-form-section .google-form-container p {
    font-size: 1.1rem; /* Consistent with .contact-intro if that was used */
    color: #555;
    margin-bottom: 2rem; /* Space before the iframe */
}

.contact-form-section .google-form-container iframe {
    display: block; /* Allows margin auto to work for centering */
    width: 100%;    /* Take full width of its container */
    max-width: 640px; /* Max width of the form itself */
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #ddd; /* Optional: a light border around the iframe */
}
