:root {
    --primary-blue: #003366; /* Bank style blue */
    --primary-red: #E01E26;  /* Bank style red */
    --light-grey: #f4f4f9;
    --dark-text: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
}

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

/* Header & Nav */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    height: 50px;
    margin-right: 15px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav button {
    background: none;
    border: none;
    padding: 10px 15px;
    margin-left: 5px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: color 0.3s;
}

nav button:hover {
    color: var(--primary-red);
}

.btn-primary {
    background-color: var(--primary-blue) !important;
    color: white !important;
    border-radius: 4px;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: var(--primary-red) !important;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections */
main {
    min-height: calc(100vh - 160px);
}

.section-padding {
    padding: 60px 0;
}

.hidden {
    display: none;
}

.active-section {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero */
.hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-text {
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--light-grey);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Two columns layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-content img, .full-width-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.img-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.gallery-item p {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Help Section Specifics */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 0 8px 8px 0;
}

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-red);
}

.help-footer {
    text-align: center;
    background: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
}

/* Legal content styles */
#legal-content h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
    padding-bottom: 10px;
}

#legal-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

#legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

#legal-content li {
    margin-bottom: 10px;
}

/* List */
.styled-list {
    list-style: none;
    margin: 20px 0;
}

.styled-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.styled-list i {
    color: var(--primary-red);
    margin-right: 10px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-placeholder {
    height: 250px;
    background: #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-top: 20px;
    color: #666;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px 30px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.logo-small {
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
}

.footer-links button {
    background: none;
    border: none;
    color: white;
    margin: 0 10px;
    cursor: pointer;
    text-decoration: underline;
}

.footer-address {
    text-align: right;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    border-top: 2px solid var(--primary-blue);
    padding: 20px 0;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 2000;
}

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

.banner-buttons button {
    padding: 8px 20px;
    margin-left: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.btn-reject {
    background: none;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.show {
        display: flex;
    }

    nav button {
        margin: 10px 0;
        text-align: left;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .two-columns, .contact-wrapper, .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-address {
        text-align: center;
    }

    .banner-flex {
        flex-direction: column;
        text-align: center;
    }

    .banner-buttons {
        margin-top: 15px;
    }
}