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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background: #050505;
}

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

section {
    padding: 90px 0;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 56px;
    letter-spacing: 1px;
}

h2 {
    font-size: 36px;
    color: #ffffff;
}

h3 {
    font-size: 24px;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
            linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.9)),
            radial-gradient(circle at center, #5c1118 0%, #120305 45%, #000000 100%);
    color: #fff;
}

.logo {
    width: 220px;
    max-width: 70%;
    margin-bottom: 35px;
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(190, 30, 45, 0.45);
}

.subtitle {
    color: #be1e2d;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto 34px;
    font-size: 22px;
    color: #f2f2f2;
}

.button {
    display: inline-block;
    background: #be1e2d;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.button:hover {
    background: #ffffff;
    color: #be1e2d;
    transform: translateY(-2px);
}

.about {
    background: #0b0b0b;
}

.about-alt {
    background: #151515;
}

.services {
    background: #050505;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.card {
    background: #151515;
    padding: 34px;
    border-radius: 14px;
    border: 1px solid rgba(190, 30, 45, 0.45);
}

.card h3 {
    color: #be1e2d;
}

.card ul {
    padding-left: 22px;
    margin-top: 18px;
}

.card li {
    margin-bottom: 10px;
    font-size: 17px;
}

.coach {
    background: #0b0b0b;
    text-align: center;
}

.coach-image {
    margin-bottom: 40px;
}

.coach-image img {
    width: 340px;
    max-width: 90%;
    border-radius: 16px;
    border: 2px solid #be1e2d;
    box-shadow: 0 0 25px rgba(190, 30, 45, 0.35);
}

.coach-content {
    max-width: 850px;
    margin: 0 auto;
}

.coach-content h2 {
    font-size: 44px;
    margin-bottom: 12px;
}

.coach-subtitle {
    color: #be1e2d;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 35px;
}

.coach-content p {
    text-align: center;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.qualifications-title {
    color: #be1e2d;
    margin-top: 45px;
    margin-bottom: 24px;
    text-align: center;
}

.qualifications {
    list-style: none;
    max-width: 760px;
    margin: 0 auto 45px;
    padding: 0;
    text-align: left;
}

.qualifications li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
}

.qualifications li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.quote {
    max-width: 850px;
    margin: 45px auto 0;
    padding: 28px;
    border-left: 6px solid #be1e2d;
    background: #151515;
    font-size: 22px;
    font-style: italic;
    text-align: center;
}

.contact {
    background: #000000;
    color: #fff;
    text-align: center;
}

.contact-box {
    max-width: 520px;
    margin: 34px auto;
    padding: 30px;
    border: 1px solid rgba(190, 30, 45, 0.5);
    border-radius: 14px;
    background: #151515;
}

.contact-box h3 {
    color: #be1e2d;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
}

.contact a:hover {
    color: #be1e2d;
}

footer {
    background: #000;
    color: #999;
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(190, 30, 45, 0.35);
}

footer p {
    margin: 0;
    font-size: 15px;
}

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

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 30px;
    }

    .hero-text {
        font-size: 20px;
    }

    .logo {
        width: 180px;
    }

    .coach-content h2 {
        font-size: 36px;
    }

    .coach-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 65px 0;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 27px;
    }

    p {
        font-size: 17px;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .card,
    .contact-box {
        padding: 24px;
    }

    .coach-image img {
        width: 280px;
    }

    .coach-content p,
    .qualifications li {
        font-size: 17px;
    }

    .quote {
        font-size: 19px;
        padding: 22px;
    }
}