*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    min-height: 100vh;
}

header {
    background: linear-gradient(90deg, #1a3d0a 0%, #2d5016 50%, #1a3d0a 100%);
    padding: 25px;
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid #ffffff;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 49%, #ffffff 49%, #ffffff 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.3) 49%, rgba(255,255,255,0.3) 51%, transparent 51%);
    background-size: 60px 60px;
    opacity: 0.1;
    pointer-events: none;
}

h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a3d0a;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    border-radius: 50%;
    border: 3px solid #ffffff;
}

.main {
    margin-top: 30px;
    text-align: center;
    padding: 0 20px;
}

.main > h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 15px;
}

.main > p {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.offers{
    padding: 30px 15%;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
}

.offer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    padding: 25px;
    border-radius: 15px;
    border: 3px solid #4a7c29;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #4a7c29, #2d5016, #4a7c29);
    border-radius: 18px;
    z-index: -1;
}

.offer-image {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4a7c29;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-bonus {
    background: linear-gradient(135deg, #4a7c29 0%, #2d5016 100%);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    border: 2px solid #ffffff;
}

.offer-rating {
    text-align: center;
    color: #1a3d0a;
    font-weight: bold;
}

.rating-stars {
    margin-top: 8px;
}

.rating-stars span{
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.offer-btn {
    background: linear-gradient(135deg, #1a3d0a 0%, #2d5016 100%);
    padding: 15px 30px;
    border-radius: 30px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.offer-btn a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.about {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 10%;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    margin: 40px 5%;
    border: 4px solid #4a7c29;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.about-text p {
    color: #1a3d0a;
    font-size: 1.3rem;
}

.banner {
    background-image: url('./images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin: 40px 5%;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #4a7c29;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,61,10,0.8) 0%, rgba(45,80,22,0.7) 50%, rgba(26,61,10,0.8) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
}

.banner-content h2 {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    font-weight: bold;
}

.banner-content p {
    font-size: 1.6rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a3d0a;
    padding: 15px 40px;
    border-radius: 30px;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.warning-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    margin: 40px 5%;
    padding: 30px;
    border-radius: 15px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-align: center;
}

.warning-content h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.warning-content p {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.warning-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

footer {
    background: linear-gradient(90deg, #1a3d0a 0%, #2d5016 50%, #1a3d0a 100%);
    margin-top: 50px;
    border-top: 4px solid #ffffff;
}

.footer-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px;
}

.footer-images img{
    height: 70px;
    object-fit: contain;
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #4a7c29;
}

.footer-links {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 30px;
    padding: 25px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    padding: 10px 20px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
}

.footer-text {
    text-align: center;
    padding: 25px;
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    p {
        font-size: 1.3rem;
    }
    
    header {
        padding: 20px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo img {
        width: 40px;
    }
    
    .offers {
        padding: 20px 5%;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer {
        padding: 20px;
        gap: 18px;
    }
    
    .offer-image {
        height: 100px;
        width: 100px;
    }
    
    .rating-stars span {
        font-size: 1.5rem;
    }
    
    .offer-btn a {
        font-size: 1.3rem;
    }
    
    .about {
        padding: 25px 5%;
        margin: 30px 2%;
    }
    
    .banner {
        margin: 30px 2%;
        background-attachment: scroll;
    }
    
    .banner-content {
        padding: 40px 20px;
    }
    
    .banner-content h2 {
        font-size: 2.2rem;
    }
    
    .banner-content p {
        font-size: 1.4rem;
    }
    
    .banner-cta {
        font-size: 1.3rem;
        padding: 12px 30px;
    }
    
    .warning-banner {
        margin: 30px 2%;
        padding: 25px 20px;
    }
    
    .warning-content h3 {
        font-size: 1.7rem;
    }
    
    .warning-content p {
        font-size: 1.2rem;
    }
    
    .warning-links {
        font-size: 1.1rem;
        gap: 10px;
    }
    
    .footer-images {
        gap: 15px;
        padding: 20px;
    }
    
    .footer-images img {
        height: 50px;
    }
    
    .footer-links {
        gap: 15px;
        padding: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 1.2rem;
    }
    
    .footer-text {
        padding: 20px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    header {
        padding: 15px;
    }
    
    .logo {
        flex-direction: column;
        gap: 8px;
    }
    
    .logo img {
        width: 35px;
    }
    
    .offers {
        padding: 15px 3%;
        gap: 15px;
    }
    
    .offer {
        padding: 15px;
        gap: 15px;
    }
    
    .offer-image {
        height: 80px;
        width: 80px;
    }
    
    .rating-stars span {
        font-size: 1.3rem;
    }
    
    .offer-btn {
        padding: 12px 25px;
    }
    
    .offer-btn a {
        font-size: 1.1rem;
    }
    
    .about {
        padding: 20px 3%;
        margin: 20px 1%;
        gap: 20px;
    }
    
    .about-text p {
        font-size: 1.2rem;
    }
    
    .banner {
        margin: 20px 1%;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    
    .banner-cta {
        font-size: 1.2rem;
        padding: 10px 25px;
    }
    
    .warning-banner {
        margin: 20px 1%;
        padding: 20px 15px;
    }
    
    .warning-content h3 {
        font-size: 1.5rem;
    }
    
    .warning-content p {
        font-size: 1.1rem;
    }
    
    .warning-links {
        font-size: 1rem;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .footer-images {
        padding: 15px;
        gap: 10px;
    }
    
    .footer-images img {
        height: 40px;
    }
    
    .footer-links a {
        font-size: 1.1rem;
        padding: 8px 15px;
    }
    
    .footer-text {
        padding: 15px;
        font-size: 1rem;
    }
}