body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4285F4; /* Add-on primary color */
}

.logo-icon {
    height: 1.5rem; /* Match the font-size of the logo text */
    vertical-align: middle;
    margin-right: 8px;
    position: relative; /* Helps with vertical alignment */
    top: -2px;
}

.header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.header nav a:hover {
    color: #4285F4;
}

/* Hero Section */
.hero {
    background: linear-gradient(170deg, #e8f0fe 0%, #ffffff 100%);
    text-align: center;
    padding: 80px 0;
    position: relative; /* Ensure it has a stacking context */
    z-index: 1;         /* Position it above default background layers */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #202124;
}

.subtitle {
    font-size: 1.25rem;
    color: #5f6368;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #4285F4;
    color: #fff;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #3367D6;
}

.small-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #5f6368;
}

/* Features Section */
.features, .how-it-works {
    padding: 60px 0;
    text-align: center;
}

.features h2, .how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.feature-card h3 {
    margin-top: 0;
    color: #4285F4;
}

/* How It Works Section */
.steps {
    list-style: none;
    padding-left: 0;
    counter-reset: steps-counter;
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
}

.steps li {
    counter-increment: steps-counter;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 50px;
    font-size: 1.1rem;
}

.steps li::before {
    content: counter(steps-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background-color: #e8f0fe;
    color: #4285F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #f1f1f1;
    color: #555;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #4285F4;
    text-decoration: none;
}

/* Content Pages (Privacy, Terms, etc.) */
.content-page {
    background: linear-gradient(170deg, #e8f0fe 0%, #ffffff 100%);
    padding: 60px 0;
}

.content-page .container {
    max-width: 800px;
}
.content-page h1 {
    text-align: center;
}