*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f4f4;
    color:#333;
}

/* HEADER */

header{
    background:#0d6efd;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;
}

.logo img{
    width:80px;
    height:auto;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
}

/* HERO */

.hero{
    padding:40px;
}

.hero-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* INTRO */

.intro{
    text-align:center;
    padding:60px 30px;
}

.intro h1{
    font-size:45px;
    margin-bottom:20px;
}

.intro p{
    max-width:900px;
    margin:auto;

    line-height:1.8;
    font-size:18px;
}

/* BUTTON SECTION */

.buttons-section{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;

    padding:40px;
}

.main-btn{
    padding:18px 45px;

    border:none;
    border-radius:8px;

    background:#198754;
    color:white;

    font-size:18px;
    cursor:pointer;
}

.small-buttons button{
    padding:15px 25px;

    border:none;
    border-radius:8px;

    background:#ffc107;

    font-size:16px;
    cursor:pointer;
}

/* CONTENT */

.content{
    padding:50px;
}

.text-box{
    background:white;

    padding:40px;

    border-radius:15px;

    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.text-box h2{
    margin-bottom:20px;
    font-size:35px;
}

.text-box p{
    line-height:1.8;
    font-size:18px;
}

/* FORM */

.form-section{
    padding:50px;
}

form{
    background:white;

    padding:40px;

    border-radius:15px;

    display:flex;
    flex-direction:column;
    gap:20px;

    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

input,
select,
textarea{
    padding:15px;

    border:1px solid #ccc;
    border-radius:8px;

    font-size:16px;
}

textarea{
    height:150px;
}

form button{
    padding:15px;

    border:none;
    border-radius:8px;

    background:#dc3545;
    color:white;

    font-size:18px;
    cursor:pointer;
}

/* WIREFRAME PAGE */

.wireframe-page{
    text-align:center;
    padding:60px 30px;
}

.wireframe-page h1{
    font-size:40px;
    margin-bottom:20px;
}

.wireframe-page p{
    margin-bottom:30px;
    font-size:18px;
}

.wireframe-page img{
    width:90%;
    max-width:900px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* FOOTER */

footer{
    background:#212529;

    color:white;

    text-align:center;

    padding:20px;
    margin-top:40px;
}

/* RESPONSIVE */

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-direction:column;
        align-items:center;
    }

    .buttons-section{
        flex-direction:column;
    }

    .intro h1{
        font-size:32px;
    }

    .hero-image img{
        height:300px;
    }

}