h1{
    color: #1d4ecd;
    font-size: 36px;
    text-align: center;
}
h3{
    color: #111827;
}
p{
    font-size: 18px;
    line-height: 1.6;
}
button{
    background-color: #1d4ecd;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
}
h1,
h2,
h3,
p{
    margin-bottom: 12px;
}
button{
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    
}
button:hover{
    background-color: #153aaa;
}
a{
    color: #111827;
    text-decoration: none;
}
a:hover{
    color: #1d4ed8;
}
form{
    margin-top: 24px;
}
#hero{
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}
.badge{
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #1d4ed8;
    color: #cccccc;
    padding: 8px 12px;
    border-radius: 28px;
    font-family: 14px;


}
.highlight{
    color: #1d4ed8;
    font-weight: bold;
}
.card{
    background-color: white;
    padding: 24px;
    margin-top: 20px;
    border-radius: 12px;
    width: 30%;
}
.card img{
    width: 100%;
    border-radius: 12px;
}
.cards-container{
    display: flex;
    gap: 20px;

}
label{
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}
input{
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #cccccc;
    border-radius: 8px;
}
input:focus{
    outline: none;
    border-color: #1d4ed8;
    background-color: #eef4ff;
    
}
#hero img{
    width: 260px;
    border-radius: 16px;
}
section{
    margin-top: 40px;

}
.navbar{
    background-color: #eef4ff;
    padding: 20px 32px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.navbar h2{
    color: #1d4ed8;
    
}
.nav-links{
    display: flex;
    gap: 20px;

}
.nav-links a{
    color: #111827;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover{
    color: #1d4ed8;
}
.banner{
    position: relative;
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;

}
.banner img{
width: 100%;
display: block;

}
.banner-text{
    position:absolute;
    top: 40px;
    left: 4px;
    color: #eef4ff;
    max-width: 400px;


}


.footer {
    background-color: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
    font-family: sans-serif;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #555;
    font-weight: 500;
}

.sprix-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffcad4;
    padding: 10px 25px; 
    border-radius: 50px; 
    text-decoration: none;
    color: #88162e;
    font-weight: bold;
    font-size: 18px; 
    border: 2px solid #ffafbe;
    transition: all 0.4s ease;
    animation: pulse-animation 2s infinite; 
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 175, 190, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 175, 190, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 175, 190, 0); }
}

.sprix-badge:hover {
    background-color: #ff8fa3;
    color: #fff;
    transform: scale(1.1) rotate(2deg); 
    border-color: #fff;
}

.sprix-logo {
    width: 25px; 
    height: 25px;
}