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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f6f3;
    color: #3d4a5c;
    line-height: 1.6;
}

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

/* Navigation Bar */
.main-navbar {
    background-color: #f8f6f3;
    border-bottom: 1px solid #d4ccc3;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 101;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background-color: #3d4a5c;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}

.hamburger-btn span:nth-child(1) {
    top: 7px;
}

.hamburger-btn span:nth-child(2) {
    top: 13.5px;
}

.hamburger-btn span:nth-child(3) {
    top: 20px;
}

.hamburger-btn.active span:nth-child(1) {
    top: 13.5px;
    transform: rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active span:nth-child(3) {
    top: 13.5px;
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #6b7a8f;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #3d4a5c;
}

/* Hero Banner Styles */
.hero-banner {
    background-color: #f8f6f3;
    background-image: 
        linear-gradient(rgba(107, 122, 143, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 122, 143, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    padding: 80px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: left;
    max-width: 100%;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8e4df;
    border: 1px solid #d4ccc3;
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #6b7a8f;
}

.trust-badge svg {
    flex-shrink: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #3d4a5c;
}

.hero-description {
    font-size: 18px;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 100%;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #3d4a5c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.hero-cta-btn:hover {
    background-color: #2d3848;
    transform: translateY(-2px);
    color: #fff;
}

.hero-cta-btn svg {
    flex-shrink: 0;
}

/* Introduction Section */
.intro-section {
    background-color: #f8f6f3;
    padding: 60px 0;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-image {
    flex: 0 0 400px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.intro-paragraph {
    flex: 1;
}

.intro-paragraph p {
    font-size: 18px;
    line-height: 1.8;
    color: #3d4a5c;
    margin-bottom: 20px;
}

.intro-paragraph p:last-child {
    margin-bottom: 0;
}

/* Bonus Types Section */
.bonus-types-section {
    background-color: #e8e4df;
    background-image: 
        linear-gradient(45deg, rgba(107, 122, 143, 0.08) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(107, 122, 143, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 122, 143, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(107, 122, 143, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 60px 60px, 60px 60px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    padding: 60px 0;
    margin: 40px 0;
}

.bonus-types-title {
    font-size: 32px;
    color: #3d4a5c;
    margin-bottom: 40px;
    font-weight: 600;
}

.bonus-types-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.bonus-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: transparent;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    transition: transform 0.3s;
}

.bonus-type-item:hover {
    transform: translateY(-5px);
}

.bonus-type-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-type-icon svg,
.bonus-type-icon img {
    width: 64px;
    height: 64px;
}

.bonus-type-item h3 {
    font-size: 24px;
    color: #3d4a5c;
    margin-bottom: 12px;
    font-weight: 600;
}

.bonus-type-item p {
    font-size: 18px;
    color: #6b7a8f;
    line-height: 1.6;
    margin: 0;
}

/* Article Page */
.article-page {
    padding: 4vw 0;
}

.back-button {
    display: inline-block;
    color: #6b7a8f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.back-button:hover {
    color: #3d4a5c;
}

.article-main {
    max-width: 800px;
    margin: 0 auto;
}

.article-main h1 {
    font-size: 42px;
    color: #3d4a5c;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-text {
    margin-top: 30px;
}

.article-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #3d4a5c;
    margin-bottom: 25px;
}

.article-text p:last-child {
    margin-bottom: 0;
}

.article-text h2 {
    font-size: 24px;
    color: #3d4a5c;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.article-text h2:first-of-type {
    margin-top: 30px;
}

.article-text ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.article-text ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #3d4a5c;
    margin-bottom: 10px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Featured Post */
.featured-post {
    background: linear-gradient(135deg, #e8e4df 0%, #d4ccc3 100%);
    border-radius: 15px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-content {
    padding: 40px;
}

.category-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #6b7a8f;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.featured-content h1,
.featured-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3d4a5c;
    font-weight: 700;
}

.featured-content p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 25px;
}

.read-more-btn {
    padding: 12px 30px;
    background-color: #3d4a5c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #2d3848;
}

.post-meta {
    margin-top: 20px;
    color: #6b7a8f;
    font-size: 14px;
}

.post-meta span {
    margin-right: 10px;
}

/* Section Title */
.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #3d4a5c;
    font-weight: 600;
}

/* Recent Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: #e8e4df;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #d4ccc3;
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 85, 104, 0.15);
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #3d4a5c;
}

.post-content p {
    color: #718096;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-item {
    background-color: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s, background-color 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
    background-color: #2a2a2a;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.category-item p {
    color: #888;
    font-size: 14px;
}

/* Footer */
.main-footer {
    background-color: #3d4a5c;
    padding: 60px 0 30px;
    margin-top: 3vw;
    border-top: 1px solid #6b7a8f;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #f8f6f3;
    font-size: 20px;
}

.footer-section p {
    color: #e8e4df;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e8e4df;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f8f6f3;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #e8e4df;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f8f6f3;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px;
    background-color: #f8f6f3;
    border: 1px solid #d4ccc3;
    border-radius: 5px;
    color: #3d4a5c;
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: #6b7a8f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    background-color: #5a6879;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #6b7a8f;
    color: #e8e4df;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        margin-left: auto;
    }

    .logo img {
        height: 30px;
    }

    .nav-links {
        position: fixed;
        top: 81px;
        left: 0;
        right: 0;
        background-color: #f8f6f3;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-top: 1px solid #d4ccc3;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 100;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #e8e4df;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 10px 20px;
        font-size: 18px;
    }

    .navbar-content {
        flex-direction: row;
        gap: 0;
    }

    .intro-content {
        flex-direction: column;
    }

    .intro-image {
        flex: 1;
        width: 100%;
        margin-bottom: 30px;
    }

    .bonus-types-grid {
        flex-direction: column;
        gap:10px;
    }

    .bonus-type-item {
        min-width: 100%;
    }

    .hero-banner {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .featured-content h1,
    .featured-content h2 {
        font-size: 28px;
    }


    .bonus-icon {
        margin: 0 auto;
    }

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

    .article-main h1 {
        font-size: 32px;
    }

    .article-text p {
        font-size: 16px;
    }

    .back-button {
        font-size: 20px;
        margin-bottom: 25px;
        display: inline-block;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }


}

