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

/* BASIS */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

a {
    color: #c95c6a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo span {
    color: #c95c6a;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* HERO */
.hero {
    background: #f9f3f4;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    background: #c95c6a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #b14f5c;
}

/* TRUST */
.trust {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    font-size: 16px;
}

/* PILLARS */
.pillars {
    padding: 70px 0;
}

.pillars h2 {
    text-align: center;
    margin-bottom: 50px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pillar {
    border: 1px solid #eee;
    padding: 25px;
    background: #ffffff;
}

.pillar h3 {
    margin-bottom: 15px;
}

.pillar p {
    margin-bottom: 15px;
}

/* ABOUT */
.about {
    background: #f9f3f4;
    padding: 60px 0;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

/* FOOTER */
.site-footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.site-footer a {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }
}