:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4263;
    --accent-color: #ff6b6b;
    --accent-light: #ff8787;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2d4263 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    transition: var(--transition-base);
    text-decoration: none;
}

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

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 9999;
    transition: width 0.1s ease;
}

.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar .contact-info,
.top-bar .location-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-link {
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
}

.top-link:hover {
    color: var(--accent-color);
    transform: translateX(2px);
}

.top-link i {
    margin-right: 0.5rem;
}

.navbar {
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.sticky-top {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
    transition: var(--transition-base);
}

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

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

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

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

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

.hero-panel {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-side {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 3rem;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.float-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.float-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

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

.benefit-icon-card {
    text-align: center;
    animation: fadeInUp 0.8s ease backwards;
}

.benefit-icon-card:nth-child(1) { animation-delay: 0.4s; }
.benefit-icon-card:nth-child(2) { animation-delay: 0.5s; }
.benefit-icon-card:nth-child(3) { animation-delay: 0.6s; }

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-base);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.benefit-icon-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon-card h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-icon-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-form-side {
    background-color: var(--bg-light);
    padding: 3rem;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-form-container {
    width: 100%;
}

.form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 1s ease;
}

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

.form-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition-base);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.1);
}

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

.btn {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-accent);
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

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

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

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

.stats-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    margin: 0;
}

.iti {
  width: 100%;
}

.services-overview,
.process-section,
.why-choose,
.industries-section,
.faq-section {
    padding: 5rem 0;
}

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin: 0;
}

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

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-md);
}

.step-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.why-image-wrapper {
    position: relative;
}

.rounded-custom {
    border-radius: 20px;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.image-badge i {
    font-size: 1.5rem;
}

.why-features {
    margin-top: 2rem;
}

.why-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition-base);
}

.why-feature-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.25rem;
    color: white;
}

.why-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-text p {
    color: var(--text-light);
    margin: 0;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-base);
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-card:hover .industry-icon {
    transform: rotate(10deg) scale(1.1);
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-light);
    margin: 0;
}

.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-background-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: white;
    color: var(--primary-color);
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    border: none;
}

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

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

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-accent {
    height: 4px;
    background: var(--gradient-accent);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
}

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

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

.page-hero {
    padding: 5rem 0 3rem;
    background: var(--bg-light);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.content-section {
    padding: 5rem 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-block .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.values-grid {
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

.team-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.team-content p {
    color: var(--text-light);
    margin: 0;
}

.approach-section {
    padding: 5rem 0;
}

.approach-features {
    margin-top: 2rem;
}

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

.approach-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.approach-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.approach-content p {
    color: var(--text-light);
    margin: 0;
}

.commitment-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.commitment-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.commitment-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.commitment-box i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.commitment-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.commitment-box p {
    color: var(--text-light);
    margin: 0;
}

.services-detailed {
    padding: 5rem 0;
}

.service-detail-block {
    margin-bottom: 5rem;
}

.service-detail-block.reverse .row {
    flex-direction: row-reverse;
}

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

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large i {
    font-size: 2rem;
    color: white;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.service-features i {
    color: var(--accent-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-packages {
    padding: 5rem 0;
    background: var(--bg-light);
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 3px solid var(--accent-color);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.package-header p {
    opacity: 0.9;
    margin: 0;
}

.package-content {
    padding: 2rem;
    flex-grow: 1;
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--accent-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.package-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.process-overview {
    padding: 5rem 0;
}

.process-detailed-timeline {
    margin-top: 3rem;
}

.process-phase {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.process-phase:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.phase-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.phase-number {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.phase-duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

.phase-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.phase-requirements {
    list-style: none;
    padding: 0;
}

.phase-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.phase-requirements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.timeline-visual {
    padding: 3rem 0;
    background: var(--bg-light);
    border-radius: 20px;
    margin-top: 3rem;
}

.visual-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem;
}

.visual-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.methodology-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.methodology-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.methodology-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.methodology-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.methodology-icon i {
    font-size: 1.5rem;
    color: white;
}

.methodology-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.methodology-text p {
    color: var(--text-light);
    margin: 0;
}

.communication-section {
    padding: 5rem 0;
}

.communication-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    height: 100%;
}

.communication-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.communication-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.communication-icon i {
    font-size: 1.75rem;
    color: white;
}

.communication-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.communication-card p {
    color: var(--text-light);
    margin: 0;
}

.contact-section {
    padding: 5rem 0;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.info-block {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.info-block:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
}

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

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

.map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-contact {
    padding: 5rem 0;
}

.thanks-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon i {
    font-size: 3rem;
    color: white;
}

.thanks-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-item {
    text-align: center;
}

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

.step-item p {
    color: var(--text-light);
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-reminder {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-page {
    padding: 5rem 0;
}

.legal-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

.legal-data-list {
    list-style: none;
    padding: 0;
}

.legal-data-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-data-list li:last-child {
    border-bottom: none;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 991px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar .contact-info,
    .top-bar .location-info {
        gap: 0.75rem;
    }
    
    .hero-panel {
        min-height: auto;
    }
    
    .hero-content-side,
    .hero-form-side {
        min-height: auto;
        padding: 3rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .process-step {
        padding-left: 80px;
    }
    
    .visual-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .visual-timeline::before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .top-bar .location-info {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding-left: 0;
        padding-top: 80px;
    }
    
    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-connector {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .why-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .approach-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-boxes {
        grid-template-columns: 1fr;
    }
    
    .steps-list {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
}

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

.navbar-toggler:focus {
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.btn:focus,
.btn:active {
    outline: none;
    box-shadow: none;
}

.splide__arrow {
    background: var(--accent-color);
    opacity: 1;
}

.splide__arrow:hover {
    background: var(--accent-light);
}

.splide__pagination__page.is-active {
    background: var(--accent-color);
}