@font-face {
    font-family: 'Bauhaus ITC';
    src: url('fonts/BauhausITCbyBT-Medium.ttf') format('truetype'),
         url('fonts/BauhausITCbyBT-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --primary-blue: #1C6675;
    --secondary-teal: #1C6675;
    --dark-bg: #DDDBCF;
    --card-bg: #F5F3ED;
    --text-primary: #2d2d2d;
    --text-secondary: #5a5a5a;
    --border-color: #D5D0C0;
    --accent-blue: #1C6675;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #E8E5D7;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #D5D0C0;
    z-index: 1000;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header .cta-button {
    background: #1C6675;
    color: white;
}

header .cta-button:hover {
    background: #155260;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transform: translate(35px, 5px);
}

.logo {
    font-family: 'Bauhaus ITC', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1C6675;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #3d3d3d;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1C6675;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #3d3d3d;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #F5F3ED;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        align-items: stretch;
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        visibility: visible;
        opacity: 1;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #D5D0C0;
        text-align: left;
        color: #3d3d3d;
    }

    .nav-menu a:hover {
        color: #1C6675;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu .cta-button {
        background: #1C6675;
        color: white;
        margin: 0.5rem 1.5rem;
        border-radius: 6px;
        text-align: center;
    }

    .nav-menu .cta-button:hover {
        background: #155260;
    }

    /* Hamburger animation when menu is open */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.cta-button {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

main {
    margin-top: 80px;
}

.hero {
    position: relative;
    padding: 80px 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.services-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 1rem;
    color: #1C6675;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.expertise-section {
    padding: 80px 2rem;
    background: var(--dark-bg);
}

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

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.expertise-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.expertise-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.expertise-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.history-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark-bg);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-dot {
    left: 100%;
    transform: translateX(-50%);
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 3rem;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: 0;
    transform: translateX(-50%);
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-blue);
    border: 3px solid var(--dark-bg);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px var(--border-color);
}

.timeline-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 0 !important;
        transform: translateY(-50%) !important;
    }

    .timeline-dot {
        left: 0 !important;
        top: 50%;
        transform: translateY(-50%) !important;
    }

    nav {
        gap: 1rem;
    }

    .hero {
        min-height: 500px;
        padding: 60px 2rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    padding: 60px 2rem;
    background: linear-gradient(135deg, #1C6675 0%, #0F4A57 100%);
    color: white;
    text-align: center;
    margin: 4rem 0 0 0;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 14px 32px;
}

.cta-section .cta-button:hover {
    background: #f0f0f0;
}

footer {
    padding: 3rem 2rem;
    background: var(--dark-bg);
    color: var(--text-primary);
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.footer-contact {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 16px;
    color: #6b7280;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    text-align: center;
}

.highlight-number {
    font-size: 28px;
    font-weight: 700;
    color: #2fa8b4;
}

.highlight-label {
    font-size: 16px;
    font-weight: 600;
    color: #1C6675;
    margin-top: 0.5rem;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #1C6675 0%, #0F4A57 100%);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 2rem 2rem;
    background: var(--dark-bg);
    min-height: auto;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-group h2,
.contact-form-group h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
    color: #1C6675;
    font-weight: bold;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-content a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.contact-form-group {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 17px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(25, 118, 210, 0.1);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .primary-button {
    align-self: flex-start;
    margin-top: 1rem;
}

.form-message {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.map-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    height: 500px;
}

.contact-map {
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 2rem 60px;
    }

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

    .contact-section {
        padding: 60px 2rem;
    }

    .info-group h2,
    .contact-form-group h2,
    .map-section h2 {
        font-size: 24px;
    }

    .map-container {
        height: 350px;
    }

    .contact-form-group {
        padding: 1.5rem;
    }
}

/* Success Stories Page Styles */
.stories-hero {
    position: relative;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #1C6675 0%, #0F4A57 100%);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.stories-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stories-hero-content p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.stories-section {
    padding: 80px 2rem;
    background: var(--dark-bg);
    min-height: calc(100vh - 300px);
}

.stories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 12px 32px rgba(25, 118, 210, 0.2);
    transform: translateY(-4px);
}

.story-card-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #1C6675 0%, #0F4A57 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-placeholder {
    font-size: 64px;
    opacity: 0.6;
}

.story-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.story-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.story-card-company {
    font-size: 16px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-card-summary {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.story-card-button {
    align-self: flex-start;
    background: transparent;
    color: var(--accent-blue);
    border: none;
    padding: 0;
    font-size: 17px;
    font-weight: 600;
    cursor: inherit;
    transition: all 0.3s ease;
    pointer-events: none;
}

.story-card-button:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Story Modal */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.story-modal.active {
    display: flex;
}

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

.story-modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.story-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-blue);
    border: none;
    color: white;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.story-modal-close:hover {
    background: var(--primary-blue);
    transform: rotate(90deg);
}

.story-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
}

.story-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, #1C6675 0%, #0F4A57 100%);
    border-bottom: 1px solid var(--border-color);
}

.story-detail-image img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid white;
}

.story-placeholder-large {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: 0.8;
}

.story-detail-content {
    display: flex;
    flex-direction: column;
    padding: 3rem 3rem 3rem 3rem;
}

.story-detail-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.story-company {
    font-size: 17px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 2rem;
}

.story-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-paragraphs p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.story-paragraphs h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.story-paragraphs h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.story-paragraphs ul {
    margin-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-paragraphs li {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

.story-paragraphs strong {
    color: var(--text-primary);
    font-weight: 600;
}

.story-paragraphs em {
    color: var(--accent-blue);
    font-style: italic;
}

.story-paragraphs a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.story-paragraphs a:hover {
    text-decoration: underline;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .stories-hero {
        padding: 80px 2rem 60px;
    }

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

    .stories-section {
        padding: 60px 2rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-detail {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .story-detail-image {
        padding: 1.5rem;
        justify-content: center;
    }

    .story-detail-image img,
    .story-placeholder-large {
        width: 160px;
        height: 160px;
    }

    .story-detail-content {
        padding: 2rem;
    }

    .story-detail-header h1 {
        font-size: 24px;
    }

    .story-modal-content {
        border-radius: 8px;
    }

    .story-modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* Full Story Page Styles */
.full-story-section {
    padding: 100px 2rem 80px;
    background: var(--dark-bg);
    min-height: calc(100vh - 300px);
    margin-top: 80px;
}

.full-story-container {
    max-width: 900px;
    margin: 0 auto;
}

.back-to-stories {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-to-stories:hover {
    color: var(--text-primary);
    gap: 1rem;
}

.story-image-banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1C6675 0%, #0F4A57 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
    min-height: 300px;
}

.story-image-banner img {
    width: 280px;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.story-image-banner .story-placeholder-large {
    width: 280px;
    height: 280px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 4px solid white;
    font-size: 96px;
    opacity: 0.8;
}

.full-story-header {
    margin-bottom: 3rem;
}

.full-story-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.full-story-company {
    font-size: 16px;
    color: var(--accent-blue);
    font-weight: 600;
}

.full-story-content {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.full-story-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.full-story-content h2:first-child {
    margin-top: 0;
}

.full-story-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-blue);
    margin: 1.5rem 0 1rem 0;
}

.full-story-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.full-story-content ul {
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.full-story-content li {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.full-story-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.full-story-content em {
    color: var(--accent-blue);
    font-style: italic;
}

.full-story-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.full-story-content a:hover {
    text-decoration: underline;
    color: var(--text-primary);
}

.story-navigation {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    pointer-events: auto;
}

.story-nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    border: none;
}

.story-nav-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.story-nav-button.prev-button {
    justify-self: flex-start;
}

.story-nav-button.next-button {
    justify-self: flex-end;
    margin-left: auto;
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .full-story-section {
        padding: 80px 1.5rem 60px;
    }

    .full-story-header h1 {
        font-size: 28px;
    }

    .story-image-banner {
        padding: 2rem 1rem;
        min-height: 250px;
    }

    .story-image-banner img,
    .story-image-banner .story-placeholder-large {
        width: 200px;
        height: 200px;
    }

    .full-story-content {
        padding: 1.5rem;
    }

    .full-story-content h2 {
        font-size: 20px;
        margin: 1.5rem 0 0.75rem 0;
    }

    .story-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .story-nav-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
