/* Root Variables */
:root {
    --primary-color: #0d7fb8;
    --secondary-color: #1ab394;
    --accent-color: #f0ad4e;
    --dark-color: #2c3e50;
    --light-bg: #f8f9fa;
}

/* Global Styles */
* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* Navbar Styling */
.navbar {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-link.active {
    color: var(--secondary-color) !important;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.25rem;
}

/* Hero Section */
.hero {
    background-image: url('img/PA-Home-banenr-overlay-black.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 127, 184, 0.75) 0%, rgba(10, 95, 165, 0.75) 100%);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(26, 179, 148, 0.1);
    border-radius: 50%;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a5fa5 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.btn-primary-custom {
    background: var(--secondary-color);
    border: none;
    color: white;
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary-custom:hover {
    background: #0f9a75;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 179, 148, 0.3);
    color: white;
}

.btn-outline-light-custom {
    color: white;
    border: 2px solid white;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Form Styles */
.form-section {
    padding: 60px 0;
}

.form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.form-card h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-section-title {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 127, 184, 0.1);
    outline: none;
}

.form-check {
    margin-bottom: 1rem;
}

.form-check-input {
    border: 2px solid #e0e0e0;
    cursor: pointer;
}

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

.form-check-label {
    cursor: pointer;
    margin-left: 0.5rem;
}

.required-indicator {
    color: #dc3545;
    margin-left: 0.25rem;
}

.form-text {
    color: #999;
    font-size: 0.9rem;
}

.contact-form .form-control {
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.95);
}

.contact-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 179, 148, 0.2);
}

.contact-form .form-control::placeholder {
    color: #999;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 10px;
}

.progress-step {
    text-align: center;
    flex: 1;
}

.progress-step-number {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.5rem;
    color: #666;
}

.progress-step.active .progress-step-number {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.progress-step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.progress-step.active .progress-step-label {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Form Grid */
.form-group-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.service-card-new {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card-new:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(240, 173, 78, 0.15);
    border-radius: 14px;
    color: #d4a574;
    margin: 0 auto 1.5rem;
}

.service-icon-box svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.15));
}

.service-card-new h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.service-card-new p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.feature-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.feature-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.feature-box h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.feature-box p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(26, 179, 148, 0.1);
    border-radius: 50%;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--light-bg);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

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

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

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

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

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

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

/* Info Box */
.info-box {
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-box h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-box p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Success Message */
.success-message {
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Benefit Card */
.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.benefit-card h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    margin: 0;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(240, 173, 78, 0.2);
    color: #d4a574;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.advantages-badge {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.clients-story-badge {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.approach-badge {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

/* Centered Header */
.centered-header {
    text-align: center;
    margin-bottom: 4rem;
}

.centered-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    line-height: 1.2;
}

.centered-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
}

.advantages-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
    line-height: 1.2;
}

.advantages-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.advantage-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.advantage-content h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.advantage-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.advantages-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.advantages-cta {
    margin-top: 2.5rem;
}

.advantages-cta .btn {
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: 5rem;
}

.benefits-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.benefits-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.benefit-item-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-item-card:nth-child(odd) {
    text-align: right;
}

.benefit-item-card:nth-child(odd) .benefit-number {
    order: 1;
    justify-self: start;
    text-align: left;
    margin-left: 0;
}

.benefit-item-card:nth-child(odd) .benefit-content {
    order: 2;
    text-align: right;
}

.benefit-item-card:nth-child(even) {
    text-align: left;
}

.benefit-item-card:nth-child(even) .benefit-number {
    order: 2;
    justify-self: end;
    text-align: right;
    margin-right: 0;
}

.benefit-item-card:nth-child(even) .benefit-content {
    order: 1;
    text-align: left;
}

.benefit-number {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(240, 173, 78, 0.3);
}

.benefit-content {
    padding: 0.5rem 0;
}

.benefit-item-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-family: 'Georgia', serif;
}

.benefit-item-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: #999;
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.comparison-table table {
    margin: 0;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    font-weight: 700;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
    background: var(--light-bg);
}

.checkmark {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

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

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
    z-index: 1;
}

.timeline-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* Process Step */
.process-step {
    text-align: center;
    padding: 30px;
}

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

.process-step h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #666;
}

/* Client Styles */
.client-logo {
    background: white;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.client-logo h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
}

/* Case Study Card */
.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.case-study-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a5fa5 100%);
    color: white;
    padding: 30px;
}

.case-study-header h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

.case-study-content {
    padding: 25px;
}

.case-study-content h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.case-study-content h5:first-child {
    margin-top: 0;
}

.case-study-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.result-item i {
    color: var(--secondary-color);
    font-weight: 700;
}

.result-item strong {
    color: var(--dark-color);
}

/* Stats Item */
.stats-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-label {
    color: #666;
    font-weight: 500;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
}

.approach-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.approach-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.approach-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.approach-point {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.approach-point-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.approach-point-content h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.approach-point-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.approach-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

/* Clients Story */
.clients-story-section {
    padding: 80px 0;
    position: relative;
}

.clients-story-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.clients-story-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.clients-story-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.clients-story-image {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
}

.clients-stat-badge {
    background: var(--accent-color);
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    position: absolute;
    bottom: 30px;
    right: 30px;
    box-shadow: 0 10px 30px rgba(240, 173, 78, 0.3);
}

.clients-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.clients-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-group-columns {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .form-card {
        margin-top: 20px;
        padding: 25px;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

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

    .timeline-item::before {
        left: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid::before {
        display: none;
    }

    .benefit-item-card:nth-child(odd),
    .benefit-item-card:nth-child(even) {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .benefit-item-card h4 {
        font-size: 1.2rem;
    }

    .benefits-header h2 {
        font-size: 2rem;
    }

    .approach-heading {
        font-size: 2rem;
    }

    .approach-heading::after {
        width: 60px;
    }

    .clients-story-heading {
        font-size: 2rem;
    }

    .clients-stat-badge {
        position: static;
        margin-top: 2rem;
    }
}
