body{
    margin:0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;
    color:#1a1a1a;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#ffffff;
    border-bottom:1px solid #eee;
    padding:15px 0;
}

.logo{
    font-weight:bold;
    font-size:22px;
    color:#d82c20;
}

.hero{
    background:linear-gradient(135deg,#d82c20,#8b0000);
    color:white;
    padding:80px 0;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    margin-bottom:25px;
}

.button{
    background:white;
    color:#d82c20;
    padding:12px 24px;
    text-decoration:none;
    border-radius:5px;
    margin-right:10px;
    font-weight:bold;
}

.section{
    padding:60px 0;
}

.section-title{
    font-size:32px;
    margin-bottom:20px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    border:1px solid #eee;
    border-radius:8px;
    padding:20px;
    background:white;
}

.card h3{
    margin-top:0;
    color:#d82c20;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th, table td{
    border:1px solid #eee;
    padding:12px;
    /*text-align:left;*/
    text-align:center;
}

table th{
    background:#f5f5f5;
}

.footer{
    background:#111;
    color:white;
    padding:40px 0;
}

.cta{
    background:#f5f5f5;
    text-align:center;
    padding:60px 0;
}

.cta a{
    background:#d82c20;
    color:white;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
}