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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    padding: 80px 0;
    text-align: center;
}

.logo {
    width: 375px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-text {
    max-width: 700px;
    margin: auto;
    font-size: 1.2rem;
    color: #6b7280;
}

.button-group {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 700;
    transition: .25s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-green {
    background: #22c55e;
    color: white;
}

.btn-dark {
    background: #111827;
    color: white;
}

.btn-light {
    background: #f3f4f6;
    color: #111827;
}.section {
    padding: 80px 0;
}

.gray {
    background: #f8fafc;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.cards,
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card,
.step {
    background: white;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transition: .25s ease;
}

.card:hover,
.step:hover {
    transform: translateY(-8px);
}

.card {
    font-size: 1.3rem;
}

.step h3 {
    margin-bottom: 15px;
    color: #111827;
}

footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

footer p {
    margin-top: 12px;
    color: #d1d5db;
}

@media (max-width:768px){

    h1{
        font-size:2.3rem;
    }

    .button-group{
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:100%;
        max-width:340px;
        text-align:center;
    }

}.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:25px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.footer-links a:hover{
    color:#22c55e;
}.footer-logo{
    width:220px;
    margin-bottom:25px;
}

.footer-title{
    font-size:1.1rem;
    margin-bottom:25px;
    color:#d1d5db;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.footer-links a:hover{
    color:#22c55e;
}

.copyright{
    color:#9ca3af;
    font-size:.9rem;
}.hero-text{

    text-align:center;

}
.navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #111;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial, sans-serif;
    transition: color 0.2s ease;
}

.navbar a:hover {
    color: #00c853;
}