/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Gadugi', sans-serif;
    line-height: 1.6;
    color: #1C2354;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}
.container-about {
    margin: 0 auto;
    padding: 0px 20px 0px 0px;
    width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 100%;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text {
    display: none;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: #1C2354;
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    font-weight: 400;
    color: #1C2354;
    line-height: 1;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #1C2354;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D09B33;
}

.nav-link.active {
    color: #D09B33;
    font-weight: 700;
}

.login-btn {
    background: #D09B33;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    background: #B8852A;
    text-decoration: none;
}

/* Desktop Login Button */
.desktop-login-btn {
    display: block;
}

.mobile-login-btn {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #1C2354;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.mobile-menu-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.mobile-menu-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.mobile-menu-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%), url('./images/building-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/slider.png');
    opacity: 0.2;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    background: #D09B33;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208, 155, 51, 0.3);
}

.hero-cta:hover {
    background: #B8852A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 155, 51, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding: 20px 0;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C2354;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #1C2354;
    margin-bottom: 20px;
}

.about-cta {
    background: #D09B33;
    color: #1C2354;
    border: 2px solid #D09B33;
    padding: 18px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(208, 155, 51, 0.25);
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about-cta:hover {
    background: #B8852A;
    border-color: #B8852A;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(208, 155, 51, 0.4);
}

.about-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Expert Team Section */
.expert-team {
    background: #1C2354;
    padding: 0;
    min-height: 500px;
}

.expert-content {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 500px;
}

.expert-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.expert-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 40px;
    text-align: left;
}

.expert-cta {
    background: #1C2354;
    color: white;
    border: 2px solid #D09B33;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.expert-cta:hover {
    background: #D09B33;
    color: #1C2354;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 155, 51, 0.3);
}

.expert-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 3px solid white;
    border-right: none;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: white;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C2354;
    margin-bottom: 50px;
    text-align: left;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.partner-box {
    background: white;
    border: 2px solid #D09B33;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.partner-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 155, 51, 0.2);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partners-cta {
    background: white;
    color: #1C2354;
    border: 2px solid #D09B33;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partners-cta:hover {
    background: #D09B33;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 155, 51, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: #1C2354;
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.testimonial-text {
    flex: 1;
    max-width: 800px;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 30px;
    quotes: """ """ "'" "'";
}

.testimonial-quote::before {
    content: open-quote;
    font-size: 2rem;
    color: #D09B33;
    font-weight: bold;
}

.testimonial-quote::after {
    content: close-quote;
    font-size: 2rem;
    color: #D09B33;
    font-weight: bold;
}

.testimonial-name {
    font-size: 1.1rem;
    color: #D09B33;
    font-weight: 600;
    margin: 0;
}

.testimonial-arrow {
    background: transparent;
    border: none;
    color: #D09B33;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    color: white;
    background: rgba(208, 155, 51, 0.1);
    border-radius: 50%;
    transform: scale(1.1);
}

.testimonial-arrow-left {
    margin-right: 20px;
}

.testimonial-arrow-right {
    margin-left: 20px;
}

/* Publications Section */
.publications {
    padding: 80px 0;
    background: white;
}

.publications-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C2354;
    margin-bottom: 50px;
    text-align: left;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.publication-box {
    background: white;
    border: 2px solid #D09B33;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.publication-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 155, 51, 0.2);
}

.publication-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Call to Action Section */
.cta-section {
    background: white;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-content {
    background: #1C2354;
    border-radius: 20px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E0E0E0;
    margin: 0;
}

.cta-button {
    background: #1C2354;
    color: #E0E0E0;
    border: 2px solid #D09B33;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #D09B33;
    color: #1C2354;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 155, 51, 0.3);
}

/* Contact CTA Section */
.contact-cta-section {
    background: white;
    padding: 60px 0;
}

.contact-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-cta-content {
    background: #1C2354;
    border-radius: 20px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-cta-text {
    flex: 1;
}

.contact-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-cta-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.contact-cta-button {
    background: transparent;
    color: white;
    border: 2px solid #D09B33;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-cta-button:hover {
    background: #D09B33;
    color: #1C2354;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 155, 51, 0.3);
}

.contact-cta-button i {
    font-size: 14px;
}

/* Footer */
.footer {
    background: #F8F9FA;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-logo-icon {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 28px;
    font-weight: 700;
    color: #D09B33;
    line-height: 1;
    margin-bottom: 5px;
}

.footer-logo-sub {
    font-size: 14px;
    font-weight: 600;
    color: #1C2354;
    line-height: 1.2;
}

.contact-bar {
    background: #D09B33;
    border-radius: 5px;
    padding: 5px 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-bar .contact-icon {
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.contact-icon {
    font-size: 20px;
    width: 20px;
    text-align: center;
}

.contact-text {
    white-space: nowrap;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: #1C2354;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #D09B33;
}

.footer-login-btn {
    background: #D09B33;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-login-btn:hover {
    background: #B8852A;
    transform: translateY(-1px);
    text-decoration: none;
}

.footer-separator {
    height: 2px;
    background: #D09B33;
    margin: 30px 0;
    border-radius: 1px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #D09B33;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Services Hero Section */
.services-hero {
    height: 40vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.services-hero-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../images/slide2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-background::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 40px;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* About Hero Section - Same design as services-hero */
.about-hero {
    height: 40vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../images/about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-background::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 40px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Contact Hero Section - Same design as about-hero */
.contact-hero {
    height: 40vh;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.contact-hero-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../images/contact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-background::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 40px;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    background-color: #3F487F;
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.contact-info-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    color: #FDD835;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.4;
}

.contact-form-container {
    padding: 60px 40px;
    background-color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3F487F;
    box-shadow: 0 0 0 2px rgba(63, 72, 127, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-btn {
    background-color: #FDD835;
    color: #333;
    border: 1px solid #FDD835;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #f4d03f;
    border-color: #f4d03f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

/* Deposit Protection Hero Section - Same design as services-hero */
.deposit-protection-hero {
    height: 40vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.deposit-protection-hero-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../images/europ.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-protection-hero-background::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.deposit-protection-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 40px;
}

.deposit-protection-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.deposit-protection-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Deposit Guarantee Information Section */
.deposit-guarantee-info {
    padding: 80px 0;
    background: white;
}

.deposit-guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1C2354;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.deposit-guarantee-content {
    max-width: 1000px;
    margin: 0 auto;
}

.deposit-guarantee-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #1C2354;
    margin-bottom: 20px;
    text-align: left;
}

/* European Countries Deposit Insurance Section */
.countries-deposit-insurance {
    background: #f8f9fa;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background: #f5f5f5;
    border: 2px solid #D09B33;
    border-radius: 12px;
    padding: 40px;
}

.country-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.country-flag {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-image {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1C2354;
    margin-bottom: 10px;
    line-height: 1.2;
}

.deposit-scheme {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

/* Services Introduction Section */
.services-intro {
    padding: 80px 0;
    background: white;
}

.intro-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1C2354;
    margin-bottom: 25px;
    text-align: justify;
}

/* Investment Cards */
.fund-investment,
.fixed-deposit,
.aktien {
    padding: 40px 0;
    background: white;
}

.immobilien,
.private-equity,
.rohstoffe {
    padding: 40px 0;
    background: #1C2354;
}


.investment-card {
    background: white;
    border: 2px solid #D09B33;
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(208, 155, 51, 0.1);
    transition: all 0.3s ease;
}

/* Dark cards for specific sections */
.immobilien .investment-card,
.private-equity .investment-card,
.rohstoffe .investment-card {
    background: #1C2354;
    border: 2px solid #D09B33;
}

.investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(208, 155, 51, 0.2);
}

/* Dark card hover effects */
.immobilien .investment-card:hover,
.private-equity .investment-card:hover,
.rohstoffe .investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(208, 155, 51, 0.3);
}

/* Layout order for different sections */
.fund-investment .investment-image {
    order: 1;
}

.fund-investment .investment-content {
    order: 2;
}

.fixed-deposit .investment-image {
    order: 1;
}

.fixed-deposit .investment-content {
    order: 2;
}

.aktien .investment-image {
    order: 1;
}

.aktien .investment-content {
    order: 2;
}

/* New sections with text left, image right */
.immobilien .investment-content {
    order: 1;
}

.immobilien .investment-image {
    order: 2;
}

.private-equity .investment-content {
    order: 1;
}

.private-equity .investment-image {
    order: 2;
}

.rohstoffe .investment-content {
    order: 1;
}

.rohstoffe .investment-image {
    order: 2;
}

.investment-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.investment-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.investment-content {
    padding: 20px 0;
}

.investment-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1C2354;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* White text for dark background sections */
.immobilien .investment-title,
.private-equity .investment-title,
.rohstoffe .investment-title {
    color: white;
}

.immobilien .investment-description,
.private-equity .investment-description,
.rohstoffe .investment-description {
    color: white;
}

.investment-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1C2354;
    text-align: justify;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiss-flag {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.services-text {
    padding: 20px 0;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C2354;
    margin-bottom: 30px;
    line-height: 1.2;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1C2354;
    margin-bottom: 40px;
    text-align: justify;
}

.services-cta {
    background: transparent;
    color: #D09B33;
    border: 2px solid #D09B33;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-cta:hover {
    background: #D09B33;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 155, 51, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .logo {
        justify-content: flex-start;
        flex-shrink: 0;
    }
    
    .logo-icon {
        width: auto;
        max-width: 120px;
        height: 50px;
        object-fit: contain;
    }
    
    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .login-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero {
        height: 50vh;
        margin-top: 50px;
    }
    
    .hero-overlay {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .services-hero {
        height: 50vh;
        margin-top: 50px;
    }
    
    .services-hero-overlay {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    
    .services-hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    /* Deposit Protection Hero Mobile Styles */
    .deposit-protection-hero {
        height: 50vh;
        margin-top: 50px;
    }
    
    .deposit-protection-hero-overlay {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    
    .deposit-protection-hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .deposit-protection-hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    /* About Hero Mobile Styles */
    .about-hero {
        height: 50vh;
        margin-top: 50px;
    }
    
    .about-hero-overlay {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    
    .about-hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    
    .contact-hero-overlay {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    
    .contact-hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }
    
    .contact-info {
        padding: 40px 30px;
    }
    
    .contact-info-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 40px 30px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .logo-icon {
        width: 100%;
        height: 50px;
    }
    
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 1000;
    }
    
    .navigation.mobile-menu-open {
        display: flex;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .desktop-login-btn {
        display: none;
    }
    
    .mobile-login-btn {
        display: block;
        width: 100%;
        margin-top: 10px;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-text {
        padding: 40px 20px;
        order: 1;
    }
    
    .about-image {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .swiss-flag {
        width: 100%;
        height: 300px;
        border-radius: 20px;
    }
    
    .expert-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .expert-text {
        padding: 40px 20px;
        order: 1;
    }
    
    .expert-image {
        order: 2;
    }
    
    .team-photo {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        border: 3px solid white;
        height: 300px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .partner-box {
        min-height: 100px;
        padding: 15px;
    }
    
    .partner-logo {
        max-height: 60px;
    }
    
    .partners-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .partners-cta {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .swiss-flag {
        width: 250px;
        height: 167px;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-cta {
        align-self: center;
        margin: 0 auto;
    }
    
    .expert-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .expert-description {
        text-align: center;
    }
    
    .expert-cta {
        align-self: center;
        margin: 0 auto;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .deposit-guarantee-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .deposit-guarantee-content p {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .country-card {
        padding: 15px;
    }
    
    .flag-image {
        width: 50px;
        height: 35px;
    }
    
    .country-name {
        font-size: 1rem;
    }
    
    .deposit-scheme {
        font-size: 0.8rem;
    }
    
    .contact-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .contact-cta-title {
        font-size: 1.3rem;
    }
    
    .contact-cta-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 45vh;
        margin-top: 50px;
    }
    
    .hero-overlay {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .services-hero {
        height: 45vh;
        margin-top: 50px;
    }
    
    .services-hero-overlay {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    
    .services-hero-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .services-hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    /* Deposit Protection Hero Mobile Styles */
    .deposit-protection-hero {
        height: 45vh;
        margin-top: 50px;
    }
    
    .deposit-protection-hero-overlay {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    
    .deposit-protection-hero-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .deposit-protection-hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    /* About Hero Mobile Styles */
    .about-hero {
        height: 45vh;
        margin-top: 50px;
    }
    
    .about-hero-overlay {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    
    .about-hero-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .about-hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .contact-hero {
        height: 45vh;
    }
    
    .contact-hero-overlay {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    
    .contact-hero-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-container {
        margin: 0 15px;
        border-radius: 10px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-info-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .contact-info-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        font-size: 1rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .intro-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .investment-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .investment-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .investment-description {
        text-align: center;
    }
    
    .investment-img {
        max-width: 300px;
        height: 250px;
    }
    
    .about-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-cta {
        align-self: center;
        margin: 0 auto;
    }
    
    .expert-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .expert-description {
        text-align: center;
    }
    
    .expert-cta {
        align-self: center;
        margin: 0 auto;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .partners-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .partner-box {
        min-height: 80px;
        padding: 10px;
    }
    
    .partner-logo {
        max-height: 50px;
    }
    
    .partners-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .partners-cta {
        display: block;
        margin: 0 auto;
        width: fit-content;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonial-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-arrow {
        font-size: 2.5rem;
        min-width: 50px;
        height: 50px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .swiss-flag {
        width: 300px;
        height: 233px;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 10px;
    }
    
    .publications-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .publication-box {
        min-height: 100px;
        padding: 10px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        align-self: center;
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
    }
    
    .footer-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-nav-link {
        font-size: 18px;
    }
    
    .footer-login-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .testimonial-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-arrow {
        font-size: 2rem;
        min-width: 40px;
        height: 40px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .testimonial-name {
        font-size: 0.9rem;
    }
    
    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
    }
    
    .publications-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .publication-box {
        min-height: 120px;
        padding: 15px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        align-self: center;
    }
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363E5C;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: left;
}

.services-content {
    max-width: 100%;
    margin-bottom: 60px;
}

.services-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.services-list {
    margin: 20px 0;
    padding-left: 20px;
}

.services-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
    list-style-type: disc;
}

.cta-section {
    background: #363E5C;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    flex: 1;
    min-width: 200px;
}

.cta-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
}

.cta-button {
    background: #C8A05C;
    color: #363E5C;
    border: 2px solid #363E5C;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    background: #D09B33;
    transform: translateY(-2px);
}

/* Mobile Responsive for Services Section */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .cta-title,
    .cta-text {
        min-width: auto;
        flex: none;
    }
    
    .cta-button {
        align-self: center;
    }
    
    .deposit-guarantee-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .deposit-guarantee-content p {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .country-card {
        padding: 12px;
    }
    
    .flag-image {
        width: 45px;
        height: 30px;
    }
    
    .country-name {
        font-size: 0.95rem;
    }
    
    .deposit-scheme {
        font-size: 0.75rem;
    }
    
    .contact-cta-content {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .contact-cta-title {
        font-size: 1.2rem;
    }
    
    .contact-cta-description {
        font-size: 0.8rem;
    }
    
    .contact-cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}