:root {
    --primary: #134e4a;
    --secondary: #115e59;
    --accent: #14b8a6;
    --background: #f0fdfa;
    --surface: #ffffff;
    --text: #134e4a;
    --muted: #5eead4;
    --bs-border-radius: 1rem;
}

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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--surface) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.btn {
    border-radius: var(--bs-border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 78, 74, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    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: linear-gradient(135deg, rgba(19, 78, 74, 0.9) 0%, rgba(17, 94, 89, 0.85) 50%, rgba(20, 184, 166, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.accent-underline {
    position: relative;
    display: inline-block;
}

.accent-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.lead {
    font-size: 1.25rem;
    color: var(--secondary);
}

.about-preview {
    background-color: var(--surface);
}

.angled-divider {
    height: 100px;
    background: linear-gradient(to bottom right, var(--surface) 50%, var(--background) 50%);
}

.service-card {
    border: none;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.service-card .card-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    color: var(--secondary);
}

.service-card ul li {
    margin-bottom: 0.5rem;
}

.benefit-card {
    padding: 2rem;
    background-color: var(--surface);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-strip {
    background-color: var(--accent);
    color: white;
    padding: 3rem 0;
}

.cta-strip h3 {
    color: white;
}

.cta-strip p {
    color: white;
    opacity: 0.9;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--surface);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-card {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: var(--secondary);
}

.testimonial-author strong {
    color: var(--primary);
    display: block;
}

.testimonial-author span {
    color: var(--secondary);
    font-size: 0.9rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: var(--surface);
    color: var(--primary);
    font-weight: 500;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    background-color: var(--surface);
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.contact-cta .section-title {
    color: white;
}

.contact-cta .lead {
    color: white;
    opacity: 0.9;
}

.footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--bs-border-radius);
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.page-header h1 {
    color: white;
}

.page-header .lead {
    color: white;
    opacity: 0.9;
}

.feature-box {
    padding: 2rem;
    background-color: var(--surface);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.audience-card {
    padding: 2rem;
    background-color: var(--surface);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.audience-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.methodology-steps {
    margin-top: 2rem;
}

.methodology-step {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--surface);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.methodology-step h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.skill-card {
    padding: 2rem;
    background-color: var(--surface);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.skill-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.skill-details ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(19, 78, 74, 0.1);
}

.skill-details li {
    padding: 0.25rem 0;
    color: var(--secondary);
}

.format-list {
    margin-top: 1.5rem;
}

.format-item {
    margin-bottom: 2rem;
}

.format-item h5 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.result-card {
    padding: 2rem;
    background-color: var(--surface);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent);
}

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

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-content h5 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: var(--bs-border-radius);
    border: 2px solid rgba(19, 78, 74, 0.2);
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
}

.contact-form .form-control.error {
    border-color: #dc3545;
}

.contact-info {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

.faq-compact {
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-compact-item {
    margin-bottom: 1.5rem;
}

.faq-compact-item:last-child {
    margin-bottom: 0;
}

.faq-compact-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto;
}

.legal-content {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-content h3 {
    color: var(--secondary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-content ul {
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin-bottom: 1rem;
}

.cookie-banner a {
    color: var(--muted);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .navbar-collapse {
        background-color: var(--surface);
        padding: 1rem;
        border-radius: var(--bs-border-radius);
        margin-top: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: -1.5rem;
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
}

.img-fluid {
    border-radius: var(--bs-border-radius);
}

.shadow {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.bg-surface {
    background-color: var(--surface);
}