/* Base Styles and Variables - Matching original JRZ Advisors colors */
:root {
    /* EXACT Colors from jrzadvisors.be */ 
    --primary-blue: #141d33;  /* Main dark blue from original */
    --secondary-blue: #0a2a44; /* Medium blue from original - Fixed: removed extra 'a' */
    --accent-blue: #144557;    /* Light blue from original */
    --yellow-primary: #E6B301; /* Main yellow from original */
    --yellow-secondary: #f9d94c; /* Lighter yellow for text */
    --yellow-light: #fef4d3;   /* Very light yellow for backgrounds */
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --dark-gray: #333333;
    
    /* Typography */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Arial', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--white);
    background-color: var(--primary-blue);
    line-height: 1.6;
	background-image: url('img/bg.jpg');
	background-repeat: repeat-y;
	background-size: 100% auto;
	margin: 0; /* Remove default body margin */
}
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--yellow-primary);
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent-blue);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--yellow-light);
    margin-bottom: 3rem;
    max-width: 800px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-blue);
    color: var(--yellow-primary);
    border: 2px solid var(--accent-blue);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Image Placeholder Styles */
.image-placeholder {
    width: 100%;
    background-color: rgba(1, 139, 190, 0.1);
    border: 2px dashed var(--accent-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--yellow-secondary);
    text-align: center;
    font-style: italic;
}

.image-placeholder i {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

/* Header & Navigation */
header {
    background-color: var(--primary-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--secondary-blue);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Header Branding */
.brand-container {
    display: flex;
    align-items: center;
    gap: 20px; /* This creates exactly 20px between brand name and logo image */
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yellow-primary);
    white-space: nowrap; /* Prevents text from wrapping */
}

.logo-text span {
    color: var(--accent-blue);
}

.logo-image {
    display: flex;
    align-items: center;
}

.logo-image img {
    height: 45px; /* Adjust as needed for your logo */
    width: auto;
    max-height: 60px; /* Prevent logo from being too tall */
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
    color: #a7aaaf;
}

nav ul li a:hover {
    color: var(--yellow-primary);
}

nav ul li a.active {
    color: var(--yellow-primary);
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--yellow-primary);
}

.language-switcher {
    display: flex;
    margin-left: 30px;
    margin-top: 15px;
}

.language-switcher button {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--white);
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switcher button.active {
    background-color: var(--accent-blue);
    color: var(--primary-blue);
    font-weight: 600;
}

.language-switcher button:first-child {
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.language-switcher button:last-child {
    border-radius: 0 4px 4px 0;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.4rem;
    background: none;
    border: none;
    color: var(--yellow-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero overlays */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(20, 29, 51, 0.6) 0%,
        rgba(20, 29, 51, 0.4) 50%,
        rgba(20, 29, 51, 0.6) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(20, 29, 51, 0.9) 0%,
        rgba(20, 29, 51, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--yellow-primary);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--yellow-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-lead {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--yellow-secondary);
}

.hero-description p {
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* How We Work Section */
.how-we-work {
    padding: var(--section-padding);
    background-color: var(--secondary-blue);
	opacity: 0.9
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: rgba(0, 27, 72, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--accent-blue);
}

.step:hover {
    transform: translateY(-10px);
}

.step-image {
    height: 150px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--yellow-primary);
    color: var(--primary-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    color: var(--yellow-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step p {
    color: var(--yellow-light);
}

/* Updated Step Icons */
.step-image.icon-container {
    height: 120px; /* Reduced from 150px for better icon proportion */
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 69, 87, 0.2); /* Subtle background */
    border: 2px solid rgba(230, 179, 1, 0.3); /* Subtle yellow border */
    background: linear-gradient(135deg, rgba(20, 69, 87, 0.2) 0%, rgba(10, 42, 68, 0.1) 100%);
}

.step-image.icon-container i {
    font-size: 2.6rem; /* Larger icons - was 3rem in .image-placeholder i */
    color: var(--yellow-primary); /* Main yellow color */
    transition: all 0.3s ease;
}

/* Optional: Add hover effect for icons */
.step:hover .step-image.icon-container i {
    transform: scale(1.1); /* Slight zoom on hover */
    color: var(--yellow-secondary); /* Lighter yellow on hover */
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--primary-blue);
	opacity: 0.9
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: rgba(2, 69, 122, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.service-card h3 {
    color: var(--yellow-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--yellow-light);
    margin-bottom: 20px;
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    color: var(--yellow-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: '•';
    color: var(--accent-blue);
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Legal & Compliance Section */
.legal {
    padding: var(--section-padding);
    background-color: var(--secondary-blue);
	opacity: 0.9;
}

.legal-content {
    background-color: rgba(0, 27, 72, 0.7);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.legal-highlight {
    background-color: rgba(249, 200, 14, 0.1);
    border-left: 4px solid var(--yellow-primary);
    padding: 20px;
    margin: 25px 0;
}

.legal-highlight p {
    color: var(--yellow-primary);
    font-weight: 600;
}

/* Legal Section Image */
.legal-image-placeholder {
    height: 250px;
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--primary-blue);
	opacity: 0.8;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.about-card {
    background-color: rgba(20, 52, 87, 0.7);
    padding: 30px;
    border-radius: 8px;
}

.about-image {
    height: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.about-card h3 {
    color: var(--yellow-primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.about-card p {
    color: var(--yellow-light);
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--secondary-blue);
	opacity: 0.8;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background-color: rgba(0, 27, 72, 0.7);
    padding: 30px;
    border-radius: 8px;
}

.contact-image {
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-info h3 {
    color: var(--yellow-primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-info p {
    color: var(--yellow-light);
    margin-bottom: 15px;
}

.contact-form {
    background-color: rgba(0, 27, 72, 0.7);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--yellow-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-blue);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--yellow-primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    padding: 60px 0 30px;
    border-top: 1px solid var(--secondary-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yellow-primary);
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--yellow-primary);
    margin-bottom: 20px;
    font-size: 1.0rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--yellow-light);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--yellow-primary);
}

.footer-contact p {
    color: var(--yellow-light);
    margin-bottom: 10px;
}

.disclaimer {
    background-color: rgba(2, 69, 122, 0.7);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid var(--yellow-primary);
}

.disclaimer p {
    color: var(--yellow-light);
    font-size: 0.8rem;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: var(--yellow-light);
    font-size: 0.8rem;
    border-top: 1px solid rgba(1, 139, 190, 0.3);
    margin-top: 30px;
}

/* Animation classes for JavaScript animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-container, .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-blue);
        transition: left 0.3s ease;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border-top: 1px solid var(--secondary-blue);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .services-container, .steps-container {
        grid-template-columns: 1fr;
    }
    
    .hero, .how-we-work, .services, .legal, .about, .contact {
        padding: 60px 20px;
    }
    
    .hero-image-placeholder,
    .step-image,
    .service-image,
    .legal-image-placeholder,
    .about-image,
    .contact-image {
        height: 200px;
    }
    
    /* Mobile adjustments for brand container */
    .brand-container {
        gap: 15px; /* Slightly smaller gap on mobile */
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-image img {
        height: 35px;
    }
}

/* Chinese Language Specific Styles */
.chinese {
    font-family: 'Microsoft YaHei', 'SimHei', sans-serif;
}

.chinese .section-title {
    font-family: 'Microsoft YaHei', sans-serif;
}

/* Content Visibility Control */
.language-content {
    display: none;
}

.language-content.active {
    display: block;
}
/* Updated Service Icons */
.service-image.icon-container {
    height: 120px; /* Reduced from 180px for better icon proportion */
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 69, 87, 0.2); /* Subtle background */
    border: 2px solid rgba(230, 179, 1, 0.3); /* Subtle yellow border */
    background: linear-gradient(135deg, rgba(20, 69, 87, 0.2) 0%, rgba(10, 42, 68, 0.1) 100%);
}

.service-image.icon-container i {
    font-size: 3.1rem; /* Larger icons */
    color: var(--yellow-primary); /* Main yellow color */
    transition: all 0.3s ease;
}

/* Hover effect for service icons */
.service-card:hover .service-image.icon-container i {
    transform: scale(1.1); /* Slight zoom on hover */
    color: var(--yellow-secondary); /* Lighter yellow on hover */
}
/* Updated About Icons */
.about-image.icon-container {
    height: 120px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 69, 87, 0.2);
    border: 2px solid rgba(230, 179, 1, 0.3);
    background: linear-gradient(135deg, rgba(20, 69, 87, 0.2) 0%, rgba(10, 42, 68, 0.1) 100%);
}

.about-image.icon-container i {
    font-size: 3.1rem;
    color: var(--yellow-primary);
    transition: all 0.3s ease;
}

/* Hover effect for about icons */
.about-card:hover .about-image.icon-container i {
    transform: scale(1.1);
    color: var(--yellow-secondary);
}

/* PDF Download Card Styling */
.about-card.pdf-download {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.about-card.pdf-download:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* PDF indicator */
.pdf-indicator {
    margin-top: 15px;
    padding: 8px 15px;
    background-color: rgba(230, 179, 1, 0.1);
    border: 1px solid var(--yellow-primary);
    border-radius: 4px;
    color: var(--yellow-primary);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.about-card.pdf-download:hover .pdf-indicator {
    background-color: var(--yellow-primary);
    color: var(--primary-blue);
}

.pdf-indicator i {
    font-size: 0.8rem;
}

/* Make the entire card clickable */
.about-card.pdf-download::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Optional: Different icon color for PDF */
.about-card.pdf-download .about-image.icon-container i {
    color: var(--yellow-primary);
}

/* Hover effect for PDF icon */
.about-card.pdf-download:hover .about-image.icon-container i {
    transform: scale(1.1);
    color: var(--yellow-secondary);
}

/* Full Width PDF Card Styling */
.about-card.pdf-download.full-width-card {
    grid-column: 1 / -1; /* Makes it span all columns */
    width: 100%;
    padding: 40px;
}

.full-width-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.full-width-content .about-image.icon-container {
    height: 140px; /* Slightly larger for full width */
    width: 140px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.full-width-content .about-image.icon-container i {
    font-size: 3.6rem; /* Larger icon */
}

.full-width-text {
    flex: 1;
    text-align: left;
}

.full-width-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--yellow-primary);
}

.full-width-text p {
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--yellow-light);
}

/* Responsive adjustments for full width card */
@media (max-width: 768px) {
    .full-width-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .full-width-text {
        text-align: center;
    }
    
    .full-width-content .about-image.icon-container {
        height: 120px;
        width: 120px;
    }
    
    .full-width-content .about-image.icon-container i {
        font-size: 3.0rem;
    }
    
    .about-card.pdf-download.full-width-card {
        padding: 30px 20px;
    }
}

/* Hero Logo Styling */
.hero-logo {
    margin-bottom: 30px;
    text-align: center;
}

.hero-logo-image {
    max-width: 200px; /* Default size - adjust as needed */
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

/* Optional hover effect for logo */
.hero-logo:hover .hero-logo-image {
    transform: scale(1.05);
}

/* Responsive adjustments for hero logo */
@media (max-width: 992px) {
    .hero-logo-image {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        margin-bottom: 25px;
    }
    
    .hero-logo-image {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-logo-image {
        max-width: 120px;
    }
}


/* Fix the About Section Layout */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* LinkedIn Full Width Block - Fixed */
.linkedin-full-width-block {
    width: 100%;
    margin: 40px 0;
    background-color: rgba(20, 52, 87, 0.7);
    border-radius: 8px;
    padding: 30px;
    display: block; /* Ensure it's block level */
}

.linkedin-container {
    width: 100%;
}

.linkedin-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.linkedin-full-width-block .about-image.icon-container {
    margin-right: 20px;
    flex-shrink: 0;
    background-color: #0077b5; /* LinkedIn blue */
    color: white;
}

.linkedin-title {
    flex: 1;
}

.linkedin-title h3 {
    margin: 0 0 10px 0;
    color: var(--yellow-primary);
    font-size: 1.3rem;
}

.linkedin-subtitle {
    margin: 0;
    color: var(--yellow-light);
    font-size: 0.95rem;
}

.linkedin-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.linkedin-item {
    background: rgba(20, 69, 87, 0.4);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 179, 1, 0.2);
}

.linkedin-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--yellow-primary);
}

.linkedin-link {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.linkedin-link:hover {
    background-color: rgba(20, 69, 87, 0.2);
}

.linkedin-link-icon {
    font-size: 1.2rem;
    color: var(--yellow-primary);
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.linkedin-link-content {
    flex: 1;
    margin: 0 20px;
}

.linkedin-link-content h4 {
    margin: 0 0 5px 0;
    color: var(--yellow-primary);
    font-size: 1rem;
    font-weight: 600;
}

.linkedin-link-content p {
    margin: 0;
    color: var(--yellow-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.linkedin-arrow {
    color: var(--yellow-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* PDF Download Card (full width) */
.pdf-download-full-width {
    display: block;
    width: 100%;
    background-color: rgba(20, 52, 87, 0.7);
    border-radius: 8px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.pdf-download-full-width:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pdf-download-full-width .full-width-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pdf-download-full-width .about-image.icon-container {
    height: 140px;
    width: 140px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.pdf-download-full-width .about-image.icon-container i {
    font-size: 3.6rem;
    color: var(--yellow-primary);
}

.pdf-download-full-width .full-width-text {
    flex: 1;
    text-align: left;
}

.pdf-download-full-width .full-width-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--yellow-primary);
}

.pdf-download-full-width .full-width-text p {
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--yellow-light);
}

.pdf-download-full-width .pdf-indicator {
    margin-top: 15px;
    padding: 8px 15px;
    background-color: rgba(230, 179, 1, 0.1);
    border: 1px solid var(--yellow-primary);
    border-radius: 4px;
    color: var(--yellow-primary);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pdf-download-full-width:hover .pdf-indicator {
    background-color: var(--yellow-primary);
    color: var(--primary-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .linkedin-full-width-block {
        padding: 20px;
    }
    
    .linkedin-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .linkedin-full-width-block .about-image.icon-container {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .linkedin-link {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .linkedin-link-content {
        margin: 10px 0;
        order: 3;
        width: 100%;
    }
    
    .linkedin-link-icon {
        order: 1;
    }
    
    .linkedin-arrow {
        order: 2;
        margin-left: auto;
    }
    
    .pdf-download-full-width .full-width-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .pdf-download-full-width .full-width-text {
        text-align: center;
    }
    
    .pdf-download-full-width .about-image.icon-container {
        height: 120px;
        width: 120px;
    }
    
    .pdf-download-full-width .about-image.icon-container i {
        font-size: 3.0rem;
    }
    
    .pdf-download-full-width {
        padding: 25px 20px;
    }
}

/* LinkedIn Icon Container - Fixed for better spacing */
.linkedin-icon-container {
    width: 80px;
    height: 80px;
    background-color: #0077b5; /* LinkedIn blue */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    padding: 15px; /* Add internal padding */
}

.linkedin-icon-container i {
    font-size: 2.5rem; /* Adjust icon size */
}

/* LinkedIn Full Width Block - Fixed */
.linkedin-full-width-block {
    width: 100%;
    margin: 40px 0;
    background-color: rgba(20, 52, 87, 0.7);
    border-radius: 8px;
    padding: 40px; /* Increased padding for better spacing */
    display: block;
    border-top: 5px solid #0077b5; /* LinkedIn color accent */
}

.linkedin-container {
    width: 100%;
}

.linkedin-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

/* Alternative: If you want to keep the square style but with better spacing */
.linkedin-icon-container.square {
    width: 80px;
    height: 80px;
    background-color: #0077b5;
    color: white;
    border-radius: 12px; /* Slightly rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    padding: 20px; /* More padding for breathing room */
}

.linkedin-icon-container.square i {
    font-size: 2.8rem;
}

.linkedin-title {
    flex: 1;
}

.linkedin-title h3 {
    margin: 0 0 10px 0;
    color: var(--yellow-primary);
    font-size: 1.5rem; /* Slightly larger */
}

.linkedin-subtitle {
    margin: 0;
    color: var(--yellow-light);
    font-size: 1.0rem; /* Slightly larger */
}

/* LinkedIn Links Items - adjust for consistency */
.linkedin-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.linkedin-item {
    background: rgba(20, 69, 87, 0.4);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 179, 1, 0.2);
}

.linkedin-link-icon {
    width: 50px; /* Slightly wider for better spacing */
    text-align: center;
    flex-shrink: 0;
    padding: 0 5px; /* Add horizontal padding */
}

/* Mobile Responsive - Updated */
@media (max-width: 768px) {
    .linkedin-full-width-block {
        padding: 25px 20px;
    }
    
    .linkedin-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .linkedin-icon-container {
        margin-right: 0;
        margin-bottom: 20px;
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    
    .linkedin-icon-container i {
        font-size: 2.2rem;
    }
    
    .linkedin-icon-container.square {
        margin-right: 0;
        margin-bottom: 20px;
        width: 70px;
        height: 70px;
        padding: 15px;
    }
    
    .linkedin-icon-container.square i {
        font-size: 2.5rem;
    }
    
    .linkedin-title h3 {
        font-size: 1.3rem;
    }
    
    .linkedin-subtitle {
        font-size: 0.95rem;
    }
}