:root {
    --primary: 220 60% 20%;
    --primary-foreground: #f1e4b3;
    --secondary: 45 64% 52%;
    --accent: 44 60% 50%;
    --background: #f4f6f9;
    --foreground: #1a202c;
    --card: #ffffff;
    --card-foreground: #1a202c;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --ring: hsl(var(--primary));
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --radius: 0.75rem;
}

header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary-foreground);
    background-color: hsl(var(--primary) / .95);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

body {
    font-family: 'Heebo', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 80rem;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: hsl(var(--secondary));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.2);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: hsl(var(--primary));
}

.nav-links-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: .875rem
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    color: rgba(241, 228, 179, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

nav a:hover {
    color: hsl(var(--secondary));
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--secondary));
    color: hsl(var(--primary));
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.header-cta:hover {
    background-color: hsl(var(--secondary) / 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-foreground);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger.open span:first-child {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Accessibility Focus States */
:focus {
    outline: 3px solid #0056b3;
    outline-offset: 2px;
}

/* Ensure focus is visible for all interactive elements */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #0056b3;
    outline-offset: 2px;
}

/* Hide focus for mouse users if supported */
:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid #0056b3;
    outline-offset: 2px;
}

.hero {
    text-align: center;
    padding: 80px 20px 20px;
    background: linear-gradient(to bottom, hsl(var(--primary) / 0.85) 0%, hsl(var(--primary) / 0.7) 50%, hsl(var(--primary) / 0.9) 100%), url('https://media.base44.com/images/public/69c563bfeb91913215a571e0/356f9840f_generated_9bf4b2c1.png');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: hsl(var(--secondary));
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    margin-top: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: hsl(var(--secondary));
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
    line-height: 1.1;
    max-width: 800px;
}

.text-secondary {
    color: hsl(var(--secondary));
}


nav .logo .text-secondary-title-1st{
    color: white;
}


nav .logo .text-secondary-title-2nd{
    color: hsl(var(--secondary));
}

.hero p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 0 40px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.trust-badges {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--secondary));
    color: hsl(var(--primary));
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.2), 0 4px 6px -4px hsl(var(--secondary) / 0.2);
}

.cta-button:hover {
    background-color: hsl(var(--secondary) / 0.9);
    transform: translateY(-2px);
}

/* --- News Articles Section --- */
.news-articles {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: center;
}

.news-articles h2 {
    color: hsl(var(--primary));
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
}

.news-articles .section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.carousel-arrow {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--foreground);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.carousel-arrow:hover {
    background: var(--muted);
    border-color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .carousel-arrow {
        display: none;
    }
    .carousel-container {
        gap: 0;
    }
}

.articles-grid {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 10px 20px 20px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.articles-grid::-webkit-scrollbar {
    display: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator-dot:hover {
    background-color: var(--muted-foreground);
}

.indicator-dot.active {
    background-color: hsl(var(--primary));
    transform: scale(1.3);
}

.article-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--card);
    border-radius: 1rem;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    text-align: right;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--secondary));
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.article-header {
    display: block;
    margin-bottom: 0;
}

.article-icon {
    width: 50px;
    height: 50px;
    background-color: hsl(var(--secondary) / 0.1);
    color: hsl(var(--secondary));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.article-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-content h3 {
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-content p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: hsl(var(--secondary));
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: color 0.3s ease;
    margin-top: auto;
}

.article-card:hover .read-more {
    color: hsl(var(--accent));
}

.form-section-wrapper {
    padding: 80px 20px;
    background-color: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: hsl(var(--primary));
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
}

.section-header .section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    max-width: 850px;
    margin: 0 auto 60px;
    background: var(--card);
    padding: 50px;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--card);
    border-radius: 1.5rem;
    border: 1px solid var(--border);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.success-message h3 {
    color: hsl(var(--primary));
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.error-message {
    text-align: center;
    padding: 2rem;
    background-color: #fef2f2;
    border-radius: 1rem;
    border: 1px solid #fecaca;
    margin-top: 1.5rem;
}

.error-icon {
    width: 48px;
    height: 48px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.error-message h3 {
    color: #991b1b;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.error-message p {
    color: #b91c1c;
    margin: 0;
}

/* Breadcrumbs Styling */
.steps-breadcrumbs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 0 10px;
}

.steps-breadcrumbs::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.breadcrumb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-item.active .step-num {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: var(--primary-foreground);
    box-shadow: 0 0 0 5px hsl(var(--primary) / 0.1);
}

.breadcrumb-item.active .step-label {
    color: hsl(var(--primary));
}

.breadcrumb-item.completed .step-num {
    background: hsl(var(--secondary));
    border-color: hsl(var(--secondary));
    color: hsl(var(--primary));
}

.breadcrumb-item.completed .step-label {
    color: hsl(var(--secondary));
}

.progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: hsl(var(--primary));
    width: 20%;
    transition: width 0.3s;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.file-upload-label {
    display: block;
    padding: 1.5rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--muted);
    color: var(--muted-foreground);
    font-weight: 500;
}

.file-upload-label:hover {
    background-color: var(--background);
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.file-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--muted);
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    border: 1px solid var(--border);
}

.remove-file {
    color: var(--destructive);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 5px;
}

.remove-file:hover {
    color: hsl(var(--destructive) / 0.8);
}

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

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--foreground);
    font-size: 0.875rem;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    box-sizing: border-box;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background-color: var(--background);
    color: var(--foreground);
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

button:hover:not(:disabled) {
    opacity: 0.9;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.button-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.button-group button {
    flex: 1;
    max-width: 300px;
}

.next-btn, .submit-btn {
    background-color: hsl(var(--secondary));
    color: hsl(var(--primary));
    box-shadow: 0 10px 15px -3px hsl(var(--secondary) / 0.2), 0 4px 6px -4px hsl(var(--secondary) / 0.2);
    margin-right: auto;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.125rem;
}

.next-btn:hover, .submit-btn:hover {
    background-color: hsl(var(--secondary) / 0.9);
}

.prev-btn {
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}

.prev-btn:hover {
    background-color: var(--muted);
    color: var(--foreground);
}

footer {
    background-color: hsl(var(--primary));
    color: var(--primary-foreground);
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    text-align: right;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: hsl(var(--secondary));
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col a {
    color: #e2e8f0;
    text-decoration: none;
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: hsl(var(--secondary));
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #cbd5e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: hsl(var(--secondary));
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-facebook {
    background-color: #1877F2;
    color: white !important;
}

.btn-facebook:hover {
    background-color: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.btn-linkedin {
    background-color: #0A66C2;
    color: white !important;
}

.btn-linkedin:hover {
    background-color: #0854A1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(10, 102, 194, 0.3);
}

.floating-contact-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    color: white;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
}


.floating-btn .btn-text {
    max-width: 0;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.floating-btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
}

.floating-btn:hover {
    width: auto;
    padding: 0 25px;
    gap: 10px;
}

.floating-btn:hover .btn-text {
    max-width: 200px;
    opacity: 1;
}

.floating-call {
    background-color: hsl(var(--primary));
}

.floating-call:hover {
    background-color: hsl(var(--primary) / 0.9);
}

.floating-whatsapp {
    background-color: #25D366;
}

.floating-whatsapp:hover {
    background-color: #20BA56;
}

.floating-start-check {
    background-color: hsl(var(--secondary));
    color: var(--secondary-foreground);
}

.floating-start-check:hover {
    background-color: hsl(var(--secondary) / 0.9);
    color: var(--secondary-foreground);
}

.icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 20px;
    background-color: var(--background);
    text-align: center;
}

.why-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: hsl(var(--secondary));
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header h2 {
    color: var(--foreground);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.title-with-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.title-with-avatars h2 {
    margin-bottom: 0 !important;
}

.team-avatars {
    display: flex;
    align-items: center;
}

.team-avatars .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: var(--muted);
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.team-avatars .avatar:not(:first-child) {
    margin-inline-start: -15px;
}

.team-avatars .avatar:first-child {
    z-index: 2;
}

.team-avatars .avatar:last-child {
    z-index: 1;
}

@media (max-width: 640px) {
    .title-with-avatars {
        flex-direction: column;
        gap: 10px;
    }
    
    .title-with-avatars h2 {
        font-size: 2rem;
    }
}

.section-header p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.why-us-card {
    background: var(--card);
    padding: 40px 30px;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: right;
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--secondary));
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 50px;
    height: 50px;
    background-color: hsl(var(--secondary) / 0.1);
    color: hsl(var(--secondary));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-us-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 12px;
}

.why-us-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.about-link-container {
    margin-top: 40px;
}

.about-link {
    display: inline-block;
    color: hsl(var(--secondary));
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-link:hover {
    color: hsl(var(--accent));
    text-decoration: underline;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background-color: hsl(var(--primary));
    color: white;
}

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

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    display: inline-block;
    color: hsl(var(--secondary));
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.process-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.process-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.process-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: right;
}

.process-card-new:hover {
    border-color: hsl(var(--secondary) / 0.3);
}

.process-image-container {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.process-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-card-new:hover .process-image-container img {
    transform: scale(1.05);
}

.process-number {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: hsl(var(--secondary));
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
}

.process-content {
    padding: 32px;
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.process-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        flex-direction: column;
        background-color: hsl(var(--primary));
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
        z-index: 90;
        align-items: flex-start;
        padding-right: 30px;
        gap: 20px;
    }

    .header-cta {
        display: none;
    }

    nav ul.open {
        right: 0;
    }

    nav ul li {
        margin: 0;
        width: 100%;
    }

    .hero {
        padding: 80px 15px 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-button {
        width: max-content;
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .form-container {
        padding: 20px;
        margin: 0 15px 40px;
    }

    .step-label {
        display: none;
    }

    .step-num {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .steps-breadcrumbs::before {
        top: 15px;
    }

    .button-group {
        flex-direction: column-reverse;
    }

    .button-group button {
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }

    main {
        padding-bottom: 80px;
    }

    .floating-contact-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .icon {
        font-size: 1.3rem;
    }
}

/* About Page Styles */
.content-page {
    max-width: 800px;
    margin: 60px auto 50px;
    padding: 40px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    border: 1px solid var(--border);
}

.content-page h1 {
    color: hsl(var(--primary));
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.content-page h2 {
    color: hsl(var(--primary));
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Team Section Styles */
.team-section {
    margin-top: 50px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: hsl(var(--primary));
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--card);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.member-image-placeholder {
    width: 150px;
    height: 150px;
    background-color: var(--muted);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid var(--border);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
    border: 3px solid var(--border);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.team-member h3 {
    color: hsl(var(--primary));
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.team-member p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card);
    color: var(--foreground);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1), 0 -2px 4px -2px rgb(0 0 0 / 0.1);
    text-align: center;
    border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}
.cookie-banner p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    max-width: 800px;
}
@media (min-width: 768px) {
    .cookie-banner p {
        margin: 0 0 0 20px;
    }
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: var(--background);
    color: var(--foreground);
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
}
.cookie-btn.accept {
    background-color: hsl(var(--primary));
    color: var(--primary-foreground);
    border-color: hsl(var(--primary));
}
.cookie-btn:hover {
    opacity: 0.9;
}
.cookie-btn.info {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.cookie-btn.info:hover {
    background-color: var(--muted);
}

/* Adjust floating buttons when cookie banner is visible */
body.has-cookie-banner .floating-contact-container {
    bottom: 160px;
}
@media (min-width: 768px) {
    body.has-cookie-banner .floating-contact-container {
        bottom: 90px;
    }
}
