/* ===== common.css ===== */


/* ===== GLOBAL RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===== GLOBAL BODY ===== */
body{
    font-family:'Segoe UI',sans-serif;
    background:#f4f7ff;
    color:#222;
    line-height:1.6;
}

/* ===== LINKS ===== */
a{
    text-decoration:none;
}

/* ===== IMAGES ===== */
img{
    max-width:100%;
    display:block;
}

/* ===== CTA ===== */
.cta-section{
    background:linear-gradient(135deg,#ff9800,#ff6f00);
    color:#fff;
    padding:70px 20px;
    text-align:center;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:16px;
}

.cta-section p{
    font-size:20px;
    margin-bottom:30px;
}