* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f7;
    color: #000;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 20px;
}

header {
    text-align: center;
    padding: 40px 0px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.1;
}

.hero-image-container {
    width: 100%;
}
.hero-image-container img{
    width: 100%;
}
.hero-image-container h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-image-container .highlight {
    color: #000;
    background: transparent;
    font-weight: 900;
    font-size: 1.6rem;
    display: block;
}

.hero-image-container p {
    font-size: 1.4rem;
    font-weight: 700;
}

.cta-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.purchase-section {
    padding: 60px 0;
    text-align: center;
}
.text-content{
    display: grid;
    gap: 1rem;
}
.purchase-btn {
    display: inline-block;
    color: #000;
    font-size: 2.5rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: linear-gradient(180deg,rgba(255, 0, 0, 1) 0%, rgba(196, 0, 0, 1) 100%);
}
.purchase-btn:hover{
    transform: scale(1.1);
}

footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col a, .footer-col p {
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.8rem;
    opacity: 0.6;
}
main{
    min-height: 55vh;
}

@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }
    .purchase-btn {
        width: 90%;
        padding: 15px 20px;
        font-size: 1.5rem;
    }
}

a{
    text-decoration: none;
    color: inherit;
}