
/*
Theme Name: MegaMark Solutions
Author: ChatGPT
Version: 2.0
*/

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f7f9fc;
    color:#222;
}

header{
    background:#ffffff;
    padding:20px 50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
}

.logo img{
    height:80px;
}

nav a{
    color:#222;
    margin-left:25px;
    text-decoration:none;
    font-weight:bold;
}

.hero{
    padding:120px 20px;
    text-align:center;
    background:linear-gradient(to right,#ffffff,#eef4ff);
}

.hero h1{
    font-size:62px;
    color:#0d5c2f;
}

.hero p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    font-size:22px;
    color:#444;
}

.btn{
    display:inline-block;
    margin-top:35px;
    background:#e32017;
    color:white;
    padding:16px 38px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.section{
    padding:90px 20px;
}

.section-title{
    text-align:center;
    font-size:44px;
    margin-bottom:20px;
    color:#0d5c2f;
}

.section-text{
    max-width:950px;
    margin:auto;
    text-align:center;
    line-height:1.9;
    font-size:19px;
    color:#444;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin-top:55px;
}

.card{
    background:#ffffff;
    padding:35px;
    border-radius:14px;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
}

.card h3{
    color:#e32017;
    margin-bottom:15px;
}

.card p{
    line-height:1.8;
    color:#444;
}

footer{
    background:#ffffff;
    text-align:center;
    padding:45px 20px;
    box-shadow:0 -2px 10px rgba(0,0,0,0.08);
}

.contact{
    background:#eef4ff;
}
