





.topnav {
  overflow: hidden;
  background-color: #FFB6C1;
}

.topnav a {
  float: left;
  display: block;
  color: grey;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ff99aa;
  color: white;
}

.topnav a.active {
  background-color: #ff69b4;
  color: white;
}

.topnav .icon {
  display: none;
}

/* MOBILE VIEW */
@media screen and (max-width: 768px) {
  .topnav a {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* WHEN CLICKED */
@media screen and (max-width: 768px) {
  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
*{
    box-sizing: border-box;
}

body{
    background: linear-gradient(135deg,#eaf4ff,#cfe6ff,#eaf4ff);
    color: #485e74;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
}
.container{
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
  margin: 0;
}

ul{
    list-style: none;
    padding: 0;
}

.brand{
    text-align: center;
}

.brand span{
    color: #fff;
}

/* WRAPPER */
.wrapper{
    box-shadow: 0 0 20px 0 rgba(72, 94, 116, 0.7);
     margin-top: 20px;
}

.wrapper > *{
    padding: 1em;
}

/* COMPANY INFO */
.company-info{
    background: #c9e6ff;
}

.company-info h3,
.company-info ul{
    text-align: center;
    margin: 0 0 1rem 0;
}

/* CONTACT */
.contact{
    background: #f9feff;
}

/* FORM STYLES */
.contact form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.contact form label{
    display: block;
}

.contact form p{
    margin: 0;
}

.contact form .full{
    grid-column: 1 / 3;
}

.contact form button,
.contact form input,
.contact form textarea{
    width: 100%;
    padding: 1em;
    border: 1px solid #c9e6ff;
}

.contact form button{
    background: #c9e6ff;
    border: 0;
    text-transform: uppercase;
}

.contact form button:hover,
.contact form button:focus{
    background: #92bde7;
    color: #fff;
    outline: 0;
    transition: background-color 2s ease-out;
}

/* ALERT */
.alert{
    text-align: center;
    padding: 10px;
    background: #79c879;
    color: #fff;
    margin-bottom: 10px;
    display: none;
}

/* LARGE SCREENS */
@media (min-width: 700px){
.wrapper{
        display: grid;
        grid-template-columns: 1fr 2fr;
}

.wrapper > *{
padding: 2em;
}

.company-info h3,
.company-info ul,
.brand{
        text-align: left;
    }
}







/* ================= FOOTER================= */
.footer {
    background: linear-gradient(135deg, #ff66a3, #ff1e6a); /* Pink gradient background */
    padding: 10px 0; /* Small height */
    color: white;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-follow {
    width: 22%; }

.footer h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer h3 {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer p {
    font-size: 12px;
    line-height: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ffe6f0;
    font-size: 12px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background: white;
    color: #ff1e6a;
    margin-right: 5px;
    font-size: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffe6f0;
    color: #ff1e6a;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    padding-top: 5px;
    font-size: 11px;
}

@media (max-width: 768px) {
    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-follow {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}
