/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #2a2a2a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #3a3a3a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f4b942;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #f4b942;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.hero-image {
    margin: 40px auto;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #f4b942;
    color: #2a2a2a;
}

.btn-primary:hover {
    background-color: #e6a832;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f4b942;
    color: #2a2a2a;
    margin-top: 30px;
}

.btn-secondary:hover {
    background-color: #e6a832;
    transform: translateY(-2px);
}
.btn_wrapper{
    display: flex;
    justify-content: center;
}
/* About Section */
.about {
    padding: 80px 0;
    border-radius: 25px;
    background: linear-gradient(180deg, #FFBC2B 0%, #855B00 100%);
    margin: 40px 20px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}

.about-item {
    margin-bottom: 40px;
    text-align: center;
}

.about-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
}

.tips-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #f4b942;
    margin-bottom: 60px;
}

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

.tip-card {
    text-align: center;
}

.tip-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tip-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f4b942;
    margin-bottom: 15px;
    line-height: 1.4;
}

.tip-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Maintenance Section */
.maintenance-section {
    padding: 60px 0;
}

.maintenance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.maintenance-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 25px;
}

.maintenance-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.maintenance-image {
    border-radius: 15px;
    overflow: hidden;
}

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f4b942;
}

.footer-copyright p {
    font-size: 14px;
    color: #999;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-top: 3px solid #f4b942;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    color: #f4b942;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-text p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn.accept {
    background-color: #f4b942;
    color: #2a2a2a;
}

.cookie-btn.accept:hover {
    background-color: #e6a832;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background-color: transparent;
    color: #e0e0e0;
    border: 2px solid #666;
}

.cookie-btn.decline:hover {
    border-color: #f4b942;
    color: #f4b942;
}

.cookie-link {
    color: #f4b942;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Tips Page Styles */
.nav-link.active {
    color: #f4b942;
}

.tips-hero {
    padding: 60px 0 80px;
    text-align: center;
}

.tips-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #f4b942;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.tips-hero-description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.tips-hero-image {
    margin: 40px auto;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.reviews-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #f4b942;
    margin-bottom: 60px;
}

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

.review-card {
    text-align: center;
    padding: 20px;
}

.review-image {
    width: 120px;
    height: 120px;

    overflow: hidden;
    margin: 0 auto 20px;
   
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 300px;
    margin: 0 auto;
}

/* Advanced Tips Section */
.advanced-tips-section {
    padding: 60px 0;
}

.advanced-tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advanced-tips-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 25px;
}

.advanced-tips-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.advanced-tips-image {
    border-radius: 15px;
    overflow: hidden;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .about {
        margin: 20px 10px;
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-item h3 {
        font-size: 20px;
    }
    
    .tips-title {
        font-size: 28px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tips-hero-title {
        font-size: 28px;
    }
    
    .tips-hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .reviews-title {
        font-size: 28px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advanced-tips-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advanced-tips-text h2 {
        font-size: 24px;
    }
    
    .maintenance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .maintenance-text h2 {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Cookie Popup Mobile */
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .tips-section,
    .about {
        padding: 60px 0;
    }
    
    .tip-card h3 {
        font-size: 16px;
    }
    
    .tip-card p {
        font-size: 13px;
    }
}