/* 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, #821CFF 0%,#A41B89 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;
    }
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 250px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
}

.subtitle {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}

.content-container {
    background-color: #fbfafa;
    border-radius: 30px;
    padding: 60px 70px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 100%;
    grid-auto-rows: 1fr;
}

.form-column,
.topics-column {
    display: flex;
    flex-direction: column;
}

.form-column h2,
.topics-column h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Contact */
.contact-form {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    flex: 1;                           
    display: flex;                     
    flex-direction: column;            
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;                          
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
    flex: 1;                         
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #9333EA;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #7c2dbf;
}

/* Populaire topics */
.topics-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;                          
}

.topic-card {
    background: white;
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.topic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.topic-card span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.topic-card .arrow {
    font-size: 24px;
    color: #666;
    font-weight: 300;
}

/* Chat */
.topic-card.chat-card {
    background: linear-gradient(135deg, #9333EA 0%, #A855F7 100%);
    margin-top: auto;                 
}

.topic-card.chat-card span:first-child {
    color: white;
    font-weight: 600;
}

.topic-card.chat-card .arrow {
    color: white;
}

.topic-card.chat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .content-container {
        padding: 30px 20px;
    }
    
    .topic-card span:first-child {
        font-size: 14px;
    }
}

/* Footer */
