/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #333;
    background-color: #f4f7f6;
    line-height: 1.6;
}

/* Reusable Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Header and Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(20, 30, 80, 0.9), rgba(60, 120, 180, 0.85)), url('images/a2a.png') no-repeat center center/cover;
    color: #fff;
    padding: 20px 40px 80px 40px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Adjust space between icon and text */
}

.logo-icon {
    height: 45px; /* Adjust icon size as needed */
}

.logo-text {
    font-size: 1.6em;
    font-weight: 700;
    color: #fff;
    white-space: nowrap; /* Prevents text from wrapping on smaller screens */
}

.cta-button {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #fff;
    color: #333;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.hero-content .subtitle {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-weight: 300;
}

.cta-button-main {
    text-decoration: none;
    color: #fff;
    background-color: #4A90E2;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button-main:hover {
    background-color: #357ABD;
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.how-it-works-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.step-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #4A90E2;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 25px;
    background-color: #4A90E2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 700;
}

.step-icon {
    height: 160px;
    width: 100%;
    max-width: 200px;
    margin-top: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    object-fit: cover;
}

.step-card h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

/* A2A Section */
.a2a-section {
    padding: 80px 20px;
    background-color: #0d1117; /* Dark background for contrast */
    color: #fff;
}

.a2a-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.a2a-text {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.a2a-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.video-container {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    box-sizing: border-box; /* Important for padding */
}

#form-status {
    margin-top: 20px;
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 850px) {
    .a2a-content {
        flex-direction: column;
        text-align: center;
    }
}
