/* Ludra Landing Page Styles */

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
}

:root {
    /* Primary Colors */
    --primary-green: #2bb098;
    --primary-cream: #efead7;
    --primary-dark: #152827;
    
    /* Secondary Colors */
    --secondary-coral: #F76C5E;
    --secondary-lavender: #b4a7c1;
    --secondary-gray: #9e9e9e;
    --secondary-gold: #d9a441;
    --secondary-rose: #c55162;

    /* Additional Colors */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Oxanium', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background-color: var(--primary-green);
    color: var(--text-light);
}

.cta-button.primary:hover {
    background-color: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.cta-button.secondary {
    background-color: transparent;
    border-color: var(--primary-cream);
    color: var(--primary-cream);
}

.cta-button.secondary:hover {
    background-color: var(--primary-cream);
    color: var(--primary-dark);
}

/* Animations */
.solution-card, .feature, .timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solution-card.animate, .feature.animate, .timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(1) {
    transition-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    transition-delay: 0.3s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.5s;
}

.timeline-item:nth-child(4) {
    transition-delay: 0.7s;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    background-color: rgba(21, 40, 39, 0.9);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    background-color: var(--primary-dark);
    box-shadow: 0 4px 10px var(--shadow-color);
}

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

.logo {
    height: 45px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    width: auto;
    max-height: 45px;
    max-width: 120px;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    padding: 8px;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: transform 0.2s ease-in-out;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.main-menu .nav-item {
    display: flex;
    align-items: center;
}

.main-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 5px 8px;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.02em;
    text-align: center;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.main-menu li a:hover::after {
    width: 100%;
}

.main-menu li a.cta-button {
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--text-light);
    background-color: var(--primary-green);
    font-size: 1.1rem;
}

.main-menu li a.cta-button:hover {
    background-color: var(--primary-cream);
    color: var(--primary-dark);
}

.lang-switch {
    margin-left: 20px;
}

.lang-switch a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.1rem;
    color: var(--primary-cream);
}

.lang-switch a:hover {
    color: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

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

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

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

nav.active {
    display: block;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
    padding: 40px 0;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-cream);
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary-green);
    line-height: 1.3;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 35px;
    max-width: 650px;
    line-height: 1.6;
}

.highlight {
    color: var(--primary-green);
    font-weight: 600;
}

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

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-animation {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 300px;
}

/* Solution Cards Section */
.solutions-section {
    background-color: var(--background-light);
    padding: 100px 0;
}

.solution-cards {
    position: relative;
    z-index: 10;
}

.solution-card {
    position: relative;
    height: 280px;
    perspective: 1000px;
    width: 100%;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s ease;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-front {
    background-color: var(--background-light);
    color: var(--primary-dark);
    transform: rotateY(0deg);
}

.card-back {
    background-color: var(--primary-green);
    color: var(--text-light);
    transform: rotateY(180deg);
}

.solution-card:hover .card-front {
    transform: rotateY(180deg);
}

.solution-card:hover .card-back {
    transform: rotateY(0deg);
}

.card-front i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Form Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    animation: fadeIn 0.5s ease;
}

.success-message i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.success-message h3 {
    margin-bottom: 10px;
}

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

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background-color: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 30px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

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

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-green);
    top: 20px;
    right: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 6px;
    box-shadow: 0 3px 10px var(--shadow-color);
}

.duration {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--primary-green);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.methodology-emphasis {
    max-width: 600px;
    margin: 50px auto 0;
    padding: 20px;
    background-color: var(--primary-cream);
    border-left: 4px solid var(--primary-green);
    border-radius: 4px;
    text-align: center;
}

/* Technologies Section */
.technologies-section {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 100px 0;
}

.technologies-section h2 {
    color: var(--text-light);
}

.tech-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.tech-category {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
}

.tech-category h3 {
    margin-bottom: 25px;
    color: var(--primary-green);
    text-align: center;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.tech-message {
    margin-top: 60px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-cream);
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.feature {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.accordion-header {
    padding: 20px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-green);
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.accordion-icon::after {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
}

.accordion-content {
    background-color: #fff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.contact-section h2 {
    color: var(--text-light);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: var(--primary-dark);
    color: #fff;
    font-family: 'Oxanium', sans-serif;
}

/* Estilo específico para el placeholder del select */
.form-group select option[value=""][disabled] {
    color: rgba(255, 255, 255, 0.7);
}

.form-group select option {
    color: #fff;
    background-color: var(--primary-dark);
}

/* Estilo para el select cuando está abierto */
.form-group select:focus {
    outline: none;
    border-color: #fff;
    background-color: var(--primary-dark);
}

/* Estilo para el select cuando está hover */
.form-group select:hover {
    background-color: var(--primary-dark);
    opacity: 0.9;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-method i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-green);
}

.contact-method a {
    color: var(--primary-cream);
}

.contact-method a:hover {
    text-decoration: underline;
}

.response-guarantee {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
}

.mobile-only {
    display: none;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
}

.footer-logo {
    flex: 0 0 120px;
    margin-right: 20px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px;
}

.footer-links a {
    color: var(--text-light);
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .logo {
        height: 40px;
    }
    .logo img {
        max-height: 40px;
        max-width: 110px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    section {
        padding: 60px 0;
    }
    .hero-section {
        padding-top: 100px;
        min-height: 90vh;
    }
    .solution-card {
        height: 300px;
    }
    .main-menu {
        gap: 10px;
        justify-content: center;
    }
    .main-menu a {
        font-size: 1rem;
        padding: 5px 6px;
    }
    .logo {
        height: 35px;
    }
    .logo img {
        max-height: 35px;
        max-width: 100px;
    }
    .navbar-collapse {
        height: auto;
        transition: all 0.4s ease;
    }
    
    .navbar-collapse.show {
        height: auto;
        opacity: 1;
    }
    
    .navbar-collapse.collapsing {
        height: 0;
        opacity: 0;
        transition: height 0.35s ease, opacity 0.35s ease;
    }
    
    .navbar-toggler {
        display: flex;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    header .container {
        padding: 0 15px;
        width: 100%;
    }
    .logo {
        height: 30px;
        margin-right: 10px;
    }
    .logo img {
        max-height: 30px;
        max-width: 90px;
    }
    .hero-section {
        padding-top: 140px;
        padding-bottom: 50px;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
        padding: 60px 0 30px;
    }
    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    .hero-content .subtitle {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    .hero-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 40px;
    }
    .hero-animation {
        margin-top: 30px;
    }
    .solution-card {
        height: 280px;
    }
    .timeline::before {
        left: 30px;
        margin-left: 0;
    }
    
    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 15px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-icon {
        left: 10px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-icon {
        left: 10px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .duration {
        display: inline-block;
        white-space: nowrap;
    }
    .features {
        gap: 20px;
    }
    .feature {
        padding: 20px;
    }
    header {
        padding: 10px 0;
    }
    .navbar-collapse {
        justify-content: center;
    }
    .main-menu {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .solution-card {
        height: 250px;
    }
    .card-front, .card-back {
        padding: 15px;
    }
    .card-front i {
        font-size: 2rem;
    }
    .hero-section {
        padding-top: 130px;
        padding-bottom: 40px;
        min-height: auto;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .hero-content {
        padding: 80px 0 40px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .hero-content .subtitle {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    .hero-text {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 35px;
    }
    .navbar-toggler {
        padding: 4px 8px;
        margin-left: auto;
    }
    .main-menu {
        padding: 15px 0;
    }
    .main-menu li {
        width: 100%;
        text-align: center;
    }
    .main-menu a {
        padding: 10px 0;
        display: block;
    }
    .lang-switch {
        margin: 10px 0;
    }
    .contact-form {
        padding: 20px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        margin: 20px 0;
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }
    .footer-links a {
        margin: 3px;
        padding: 8px 5px;
        font-size: 0.9rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
        text-align: center;
        width: 100%;
    }
    .footer-social {
        margin: 20px 0;
    }
    .footer-social a {
        margin: 3px;
        padding: 8px;
    }
    .logo {
        height: 25px;
        margin-right: 8px;
    }
    .logo img {
        max-height: 25px;
        max-width: 75px;
    }
    header {
        padding: 8px 0;
    }
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    img {
        max-width: 100%;
    }
    .solution-cards {
        margin-left: 0;
        margin-right: 0;
    }
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Fix for mobile devices */
    input, select, textarea, button {
        font-size: 16px !important; /* Prevents iOS zoom on input focus */
    }
    
    .solution-card, .feature {
        transform: none !important;
        transition: none !important;
    }
    
    .solution-card:hover {
        transform: none !important;
    }
    
    .feature:hover {
        transform: none !important;
    }
    
    /* Improve touch targets */
    .main-menu a, 
    .cta-button,
    .accordion-header,
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    /* Adjust content width */
    .hero-text, 
    .timeline-content p,
    .feature p,
    .tech-message p {
        max-width: 100%;
    }
    
    /* Adjust touch spacing */
    .footer-links a,
    .footer-social a {
        margin: 3px;
        padding: 8px;
    }
    
    .timeline-item {
        padding-left: 50px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    
    .timeline-content {
        padding: 15px 12px;
        overflow: hidden;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        word-break: keep-all;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .duration {
        padding: 3px 8px;
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .methodology-emphasis p {
        font-size: 0.9rem;
    }
}

/* Add these to apply bootstrap's utilities */
.mt-5 {
    margin-top: 3rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.text-center {
    text-align: center !important;
} 