/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.logo-text h1 {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: bold;
}

.logo-text span {
    color: #666;
    font-size: 14px;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta-button {
    background: #2c5aa0;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-cta-button:hover {
    background: #1e3f73;
    transform: translateY(-1px);
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-bottom: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #2c5aa0;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Services Section */
.services {
    padding: 80px 0 80px 0;
    background: #f8f9fa;
    margin-top: 0;
    margin-bottom: 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c5aa0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px 60px 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 6rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
    display: block;
    width: 100%;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.service-card .read-more {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
    color: #2c5aa0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service-card:hover .read-more {
    opacity: 1;
    color: #1e3f73;
}

.service-card .read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: inline;
    width: auto;
    margin: 0;
}

.service-card:hover .read-more i {
    transform: translateX(3px);
}

/* Modern Waarom Astans Section */
.waarom-astans {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f7ff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Showcase */
.benefits-showcase {
    margin-bottom: 80px;
}

.benefits-grid-top,
.benefits-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.benefits-grid-bottom {
    margin-bottom: 0;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card.featured {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
}

.benefit-card.featured:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-card.featured .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: #2c5aa0;
}

.benefit-card.featured .benefit-icon i {
    color: white;
}

.benefit-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card.featured .benefit-content h3 {
    color: white;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.benefit-card.featured .benefit-content p {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-highlight {
    margin-top: 15px;
}

.highlight-badge {
    background: #2c5aa0;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.benefit-card.featured .highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.benefit-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.mini-stat {
    text-align: center;
    background: rgba(44, 90, 160, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    flex: 1;
}

.benefit-card.featured .mini-stat {
    background: rgba(255, 255, 255, 0.2);
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c5aa0;
}

.benefit-card.featured .stat-value {
    color: white;
}

.stat-desc {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
    display: block;
}

.benefit-card.featured .stat-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Social Proof Section */
.social-proof {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    flex: 1;
}

.proof-stat {
    text-align: center;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.testimonial-preview {
    flex: 1;
    padding-left: 40px;
    border-left: 3px solid #2c5aa0;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    color: #2c5aa0;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.large {
    padding: 18px 35px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.cta-button.large i {
    font-size: 1.2rem;
}

.cta-button.secondary.large {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary.large:hover {
    background: white;
    color: #2c5aa0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c5aa0;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.contact-method.primary {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method.primary .method-icon {
    background: rgba(255, 255, 255, 0.2);
}

.method-icon i {
    font-size: 1.8rem;
    color: #2c5aa0;
}

.contact-method.primary .method-icon i {
    color: white;
}

.method-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #333;
}

.contact-method.primary .method-content h3 {
    color: white;
}

.method-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-method.primary .method-content p {
    color: rgba(255, 255, 255, 0.9);
}

.method-button {
    display: inline-block;
    padding: 12px 24px;
    background: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.method-button:hover {
    background: #1e3f73;
    transform: translateY(-1px);
}

.method-button.primary {
    background: white;
    color: #2c5aa0;
}

.method-button.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1e3f73;
}

.availability,
.response-time {
    display: block;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.contact-method.primary .availability,
.contact-method.primary .response-time {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 30px;
    text-align: left;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Modern Form Styling */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-submit {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.form-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Form Guarantee */
.form-guarantee {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.guarantee-items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.guarantee-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Form feedback messages */
.form-messages {
    margin-bottom: 20px;
}

.form-messages .message {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-messages .message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-messages .message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* CAPTCHA styling */
.captcha-field {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin: 10px 0;
}

.captcha-field label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.captcha-field input {
    max-width: 120px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
}

.captcha-field input:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

/* Company Info */
.company-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Honeypot field - must remain invisible */
#website-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Verkoop Functionaliteit Styles */
.verkoop-functionaliteiten {
    padding: 80px 0;
    background: #f8f9fa;
}

.verkoop-functionaliteiten .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.functionaliteit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.functionaliteit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.functionaliteit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.functionaliteit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #2c5aa0, #4a90e2);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.card-content h3 {
    color: #2c5aa0;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.feature-item i {
    color: #4CAF50;
    font-size: 12px;
    flex-shrink: 0;
}

.verkoop-workflow {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.verkoop-workflow h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 40px;
    font-size: 28px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2c5aa0, #4a90e2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-content h4 {
    color: #2c5aa0;
    margin-bottom: 8px;
    font-size: 16px;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.workflow-arrow {
    color: #4a90e2;
    font-size: 20px;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .functionaliteit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .functionaliteit-card {
        padding: 25px;
    }
    
    .verkoop-workflow {
        padding: 30px 20px;
    }
    
    .workflow-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* CRM Benefits Styles */
.crm-benefits {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.crm-benefits h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 40px;
    font-size: 28px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #2c5aa0;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .crm-benefits {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #ecf0f1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn.accept {
    background: #27ae60;
    color: white;
}

.cookie-btn.accept:hover {
    background: #229954;
}

.cookie-btn.settings {
    background: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

.cookie-btn.settings:hover {
    background: #ecf0f1;
    color: #2c3e50;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #5dade2;
    text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #2c3e50;
}

.cookie-modal-body {
    padding: 20px 25px;
}

.cookie-category {
    margin-bottom: 25px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

.cookie-category p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #27ae60;
}

input:disabled + .toggle-slider {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-modal-footer {
    padding: 15px 25px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 10px;
    }
}

/* Location/Maps Section */
.location {
    padding: 80px 0;
    background: #fff;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c5aa0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.location-info h3 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.location-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-right: 15px;
    margin-top: 5px;
}

.location-item p {
    color: #666;
    margin: 0;
}

.location-item strong {
    color: #333;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-logo-text h3 {
    color: #4a90e2;
    font-size: 1.8rem;
    margin: 0;
}

.footer-logo-text span {
    color: #bdc3c7;
    font-size: 0.9rem;
    display: block;
    margin-top: -3px;
}

.footer-tagline {
    color: #ecf0f1;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.footer-section h4 {
    color: #4a90e2;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .benefits-grid-top,
    .benefits-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .benefit-card.featured {
        transform: none;
    }

    .benefit-card.featured:hover {
        transform: translateY(-8px);
    }

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-proof {
        flex-direction: column;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button.large {
        width: 100%;
        justify-content: center;
    }

    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .guarantee-items {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .waarom-astans,
    .services,
    .contact {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .benefit-card {
        padding: 25px;
    }

    .benefit-stats {
        flex-direction: column;
        gap: 10px;
    }

    .proof-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

    .cta-content h3 {
        font-size: 1.3rem;
    }

    .benefits-grid-top,
    .benefits-grid-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location {
        padding: 60px 0;
    }

    .location h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c5aa0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 3px solid #2c5aa0;
    transform: scale(1.05);
}

.pricing-badge {
    background: #2c5aa0;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #2c5aa0;
}

.period {
    font-size: 1.2rem;
    color: #666;
}

.price-description {
    color: #666;
    margin-bottom: 30px;
}

.pricing-features {
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #2c5aa0;
    margin-right: 10px;
    width: 16px;
}

.pricing-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 100%;
}

.pricing-btn:hover {
    background: #1e3f73;
}

.pricing-btn.featured {
    background: #4a90e2;
}

.pricing-btn.featured:hover {
    background: #2c5aa0;
}

.pricing-faq {
    padding: 80px 0;
    background: white;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c5aa0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(44, 90, 160, 0.4);
}

.chat-button i {
    color: white;
    font-size: 24px;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
    resize: both;
    min-width: 350px;
    min-height: 400px;
    max-width: 80vw;
    max-height: 80vh;
}

.chat-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chat-title i {
    font-size: 18px;
}

.chat-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.iframe-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
    z-index: 10;
}

.iframe-loading i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 10px;
}

#chatIframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 20px 20px;
}

.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(-45deg, transparent 30%, #2c5aa0 30%, #2c5aa0 40%, transparent 40%, transparent 60%, #2c5aa0 60%, #2c5aa0 70%, transparent 70%);
    cursor: nw-resize;
    border-radius: 0 0 20px 0;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 80%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-message.bot .message-avatar {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
}

.chat-message.user .message-avatar {
    background: #e0e0e0;
    color: #666;
}

.message-content {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
}

.message-content p {
    margin: 0;
    line-height: 1.4;
    font-size: 14px;
}

.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.quick-btn {
    background: white;
    border: 1px solid #2c5aa0;
    color: #2c5aa0;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.quick-btn:hover {
    background: #2c5aa0;
    color: white;
}

.chat-input-container {
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: #2c5aa0;
}

/* Enhanced Hero Section */
.hero h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    margin: 10px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #2c5aa0;
}

.social-proof {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.proof-item i {
    color: #ffd700;
    font-size: 16px;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.company-icon {
    font-size: 120px;
    color: #e0e7f0;
}

.company-values {
    padding: 80px 0;
}

.company-values h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 32px;
    color: white;
}

.value-card h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.value-card p {
    line-height: 1.6;
    color: #666;
}

.company-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
}

.mission-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-text blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 40px;
    position: relative;
}

.mission-text blockquote::before,
.mission-text blockquote::after {
    content: '"';
    font-size: 48px;
    color: #ffd700;
    font-family: serif;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.company-approach {
    padding: 80px 0;
    background: #f8f9fa;
}

.company-approach h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.approach-item {
    text-align: center;
    padding: 30px 20px;
}

.approach-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.approach-item h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

.why-choose-us {
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reason-item i {
    font-size: 32px;
    color: #2c5aa0;
    flex-shrink: 0;
    margin-top: 5px;
}

.reason-item h3 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.reason-item p {
    color: #666;
    line-height: 1.6;
}

/* Software Page Styles */
.software-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
}

.software-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.software-hero-content {
    text-align: left;
}

.software-hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.software-hero-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.software-hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.software-hero-content .hero-buttons {
    justify-content: flex-start;
}

.software-hero-image {
    text-align: left;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.software-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.software-benefits h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.software-modules {
    padding: 80px 0;
}

.software-modules h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.modules-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.modules-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.module-category h3 {
    font-size: 28px;
    color: #2c5aa0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-category h3 i {
    font-size: 32px;
}

.module-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.module-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-header {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-header i {
    font-size: 24px;
}

.module-header h4 {
    font-size: 20px;
    font-weight: 600;
}

.module-content {
    padding: 25px;
}

.module-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.module-content ul {
    list-style: none;
    padding: 0;
}

.module-content li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.module-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.integration-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.integration-features h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.integration-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.integration-item i {
    font-size: 48px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.integration-item h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.integration-item p {
    color: #666;
    line-height: 1.6;
}

.software-pricing-summary {
    padding: 80px 0;
}

.software-pricing-summary h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.pricing-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-item h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.pricing-item p {
    color: #666;
    line-height: 1.6;
}

.pricing-cta {
    text-align: center;
}

.software-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Customers Page Styles */
.customers-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.customers-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.customers-hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.customer-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.customer-testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
    position: relative;
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-top: 20px;
}

.testimonial-author h4 {
    color: #2c5aa0;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-weight: 500;
}

.company-details {
    margin-top: 5px;
}

.company-details small {
    color: #999;
    font-size: 12px;
}

.customer-success-stories {
    padding: 80px 0;
}

.customer-success-stories h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.story-header {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 25px;
}

.story-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.story-company {
    font-size: 14px;
    opacity: 0.9;
}

.story-content {
    padding: 25px;
}

.story-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.story-content strong {
    color: #2c5aa0;
}

.industry-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.industry-overview h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 48px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.industry-item h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.industry-item p {
    color: #666;
    line-height: 1.6;
}

.customer-benefits {
    padding: 80px 0;
}

.customer-benefits h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.benefits-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-stat {
    text-align: center;
    padding: 40px 20px;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.percentage {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.benefit-stat h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.benefit-stat p {
    color: #666;
    line-height: 1.6;
}

.customers-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    text-align: center;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    text-align: center;
}

.chat-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-send:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #2c5aa0;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Fullscreen mode */
.chat-window.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0;
    z-index: 10000;
}

.chat-window.fullscreen #chatIframe {
    border-radius: 0;
}

.chat-window.fullscreen .resize-handle {
    display: none;
}

/* Mobile responsiveness for chat */
@media (max-width: 768px) {
    .chat-window {
        width: 350px;
        height: 500px;
    }
    
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 30px);
        height: 70vh;
        right: -15px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
    }
    
    .chat-button i {
        font-size: 22px;
    }
    
    .chat-controls button {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Privacy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.privacy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    background: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-section h2 i {
    font-size: 1.5rem;
    color: #4a90e2;
}

.privacy-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.privacy-section ul {
    margin: 15px 0 15px 20px;
    color: #555;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-section a {
    color: #2c5aa0;
    text-decoration: none;
}

.privacy-section a:hover {
    color: #4a90e2;
    text-decoration: underline;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-details .contact-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-details .contact-item strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.contact-details .contact-item p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px;
    }
    
    .privacy-hero h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-section {
        padding: 25px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}