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

body {
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    background-color: #F5F1E8;
    color: #2C3E50;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 85vh;
    padding: 6vh 5vw 4vh;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(44px, 11vw, 88px);
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 1vh;
    cursor: pointer;
    color: #B8860B;
    text-align: center;
    font-family: 'Comic Sans MS', 'Trebuchet MS', sans-serif;
}

.tagline {
    font-size: clamp(18px, 4.5vw, 28px);
    margin-bottom: 5vh;
    color: #5D4E37;
    text-align: center;
    font-weight: 500;
}

.info-section {
    margin-bottom: 5vh;
    max-width: 750px;
    width: 100%;
}

.location {
    font-size: clamp(17px, 4vw, 22px);
    margin-bottom: 4.5vh;
    color: #8B6914;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
}

.training-details {
    text-align: left;
    background-color: #FFFFFF;
    padding: 4vh 5vw;
    border-radius: 12px;
    margin-bottom: 3vh;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8DCC4;
}

.training-details h2 {
    font-size: clamp(24px, 5.5vw, 36px);
    margin-bottom: 3vh;
    color: #B8860B;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.training-details > p:first-of-type {
    font-size: clamp(15px, 3.8vw, 19px);
    line-height: 1.7;
    margin-bottom: 3vh;
    color: #2C3E50;
    text-align: center;
    padding-bottom: 2vh;
    border-bottom: 1px solid #E8DCC4;
}

.training-details p {
    font-size: clamp(14px, 3.5vw, 17px);
    line-height: 1.8;
    margin-bottom: 2.5vh;
    color: #2C3E50;
}

.training-details strong {
    color: #8B6914;
    font-weight: 700;
    font-size: clamp(15px, 3.7vw, 18px);
}

.approach {
    margin-top: 3.5vh;
    padding-top: 2.5vh;
    border-top: 2px solid #D4C4A8;
    font-style: italic;
    background-color: #FBF8F1;
    padding: 2.5vh 2.5vw;
    border-radius: 6px;
    font-size: clamp(14px, 3.5vw, 17px);
}

.phone-display {
    font-size: clamp(30px, 6.5vw, 48px);
    color: #FFFFFF;
    background-color: #B8860B;
    padding: 2.5vh 6vw;
    border-radius: 10px;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 2vh;
    cursor: pointer;
    border: 3px solid #8B6914;
    text-align: center;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.25);
}

.phone-display:active {
    background-color: #9A7209;
    box-shadow: 0 2px 6px rgba(184, 134, 11, 0.3);
}

.cta-text {
    font-size: clamp(15px, 3.5vw, 19px);
    color: #5D4E37;
    margin-bottom: 4vh;
    text-align: center;
    font-weight: 500;
}

.footer {
    text-align: center;
    padding: 3vh 5vw;
    background-color: #E8DCC4;
    color: #5D4E37;
    font-size: clamp(13px, 3vw, 16px);
    margin-top: 6vh;
    border-top: 2px solid #D4C4A8;
}

@media (max-width: 768px) {
    .training-details {
        padding: 3vh 4vw;
    }
    
    .hero {
        padding: 5vh 4vw 3vh;
    }
    
    .phone-display {
        padding: 2.5vh 5vw;
    }
}

