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

body {
    width: 100vw;
    height: 100vh;
}

a {
    text-decoration: none;
}

.blue-color {
    color: #0274D4;
}

.font-size-40 {
    font-size: 40px;
}

.content {
    height: 80vh;
    width: 100%;
    position: relative;
}

.quote-btn {
    display: inline-block;
    padding: 9px 20px;
    background-color: #20C35A; /* Bright green */
    color: white;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 200px;
    text-decoration: none;
    transition: background 0.3s ease;
}