/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #202124;
    background-color: #fff;
}

/* Hero Section - Google Colors */
.hero {
    background-color: #4285F4; /* Google Blue */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #EA4335; /* Google Red */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #C5221F;
}

/* Content Section */
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.content h2 {
    color: #34A853; /* Google Green */
    margin-top: 30px;
    margin-bottom: 15px;
}

.content h3 {
    color: #FBBC05; /* Google Yellow */
    margin-top: 20px;
    margin-bottom: 10px;
}

.content p, .content li {
    margin-bottom: 15px;
    color: #202124;
}

.content a {
    color: #4285F4;
    text-decoration: underline;
}

.content ul {
    margin-left: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #202124; /* Dark gray footer */
    color: #fff;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .cta-btn {
        padding: 12px 25px;
    }
}
