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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Banner */
.top-banner {
    background: linear-gradient(90deg, #140424 0%, #CF8DE5 50%, #564797 60%, #13879C 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
}

.banner-link {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 5px;
}

.banner-link:hover {
    text-decoration: none;
}

/* Header */
.navbar {
    background: white;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar .container {
    max-width: 1200px;             
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;               
}

.nav-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    padding: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    display: flex;
    align-items: center;
}

.logo-img a {
    display: block;
    line-height: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    justify-content: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #006BA6;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.icon-btn {
    background: none;
    border: 2px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.icon-btn:hover {
    background: #f0f0f0;
    border-color: #006BA6;
}

.icon-btn img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.taal-btn {
    background: linear-gradient(180deg, #FF0000 0%, #FF0000 33%, white 33%, white 66%, #003DA5 66%, #003DA5 100%);
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .navbar .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
}

/* Hero */
.hero-tips {
    background: rgb(248, 238, 250);
    padding: 60px 0 40px;
    text-align: center;
}

.hero-tips h1 {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.hero-tips p {
    font-size: 22px;
    color: #666;
}

/* Tips */
.tips-section {
    background: #ffffff;
    padding: 60px 0 80px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.tip-image {
    width: 100%;
    height: 380px;                   
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

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

.tip-content {
    padding: 30px;
}

.tip-card h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.tip-list {
    list-style: none;
    padding: 0;
}

.tip-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

.tip-list li:last-child {
    border-bottom: none;
}

.tip-list li:before {
    content: "•";
    color: #006BA6;
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
}

/* Footer */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-tips h1 {
        font-size: 36px;
    }

    .hero-tips p {
        font-size: 18px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .tip-card h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .hero-tips h1 {
        font-size: 28px;
    }

    .tip-image {
        height: 220px;
    }

    .tip-content {
        padding: 25px 20px;
    }
}