/* Grundlegende Styles - Modernisiertes Business Design */
:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --text: #f8fafc;
    --text-light: #cbd5e1;
    --border: #334155;
    --shadow: 0 10px 25px rgba(0,0,0,0.3);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p, span, a, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--primary);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Modernisiert */
header {
    background-color: rgba(15, 23, 42, 0.95);
    color: var(--text);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    width: 100%;
    overflow: visible;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.logo-icon {
    color: var(--accent-light);
    font-size: 2.2rem;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    color: var(--accent);
    transform: scale(1.05);
}

.logo span {
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 400;
    vertical-align: super;
    margin-left: 0.3rem;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    font-size: 1rem;
}

nav ul li a:hover {
    color: var(--accent-light);
}

nav ul li a.active {
    color: var(--accent-light);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section - Modernisiert */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%), url('../img/halfofphoto.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow-light);
}

.btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-light);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: rgba(96, 165, 250, 0.1);
}

/* Business Highlights */
.business-highlights {
    background-color: var(--secondary);
    padding: 5rem 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2.5rem;
}

.highlight-card {
    background: var(--primary);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-left-color: var(--accent-light);
    box-shadow: var(--shadow);
}

.highlight-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlight-card h3 i {
    color: var(--accent-light);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.highlight-card:hover h3 i {
    transform: scale(1.1) rotate(5deg);
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

/* Trust Section - Modernisiert */
.trust-section {
    padding: 6rem 0;
    background-color: var(--primary);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

.trust-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    background: var(--secondary);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    box-shadow: var(--shadow-light);
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.advisor-badge {
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: var(--shadow-light);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How it works Section */
#how-it-works {
    padding: 6rem 0;
    background-color: var(--secondary);
    position: relative;
}

#how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.advisor-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: var(--radius);
    padding: 4rem;
    margin-bottom: 4rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.advisor-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.advisor-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.advisor-image {
    text-align: center;
    position: relative;
}

.advisor-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.advisor-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.advisor-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 1.5rem;
    color: var(--text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.advisor-title {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advisor-info {
    padding-top: 1rem;
}

.advisor-info h3 {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.advisor-info h3 i {
    color: var(--accent);
    font-size: 1.6rem;
}

.advisor-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.iban-notice {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 4px solid var(--accent);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    position: relative;
}

.iban-notice p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.iban-notice strong {
    color: var(--accent);
    font-weight: 600;
}

/* Advisor Section - Mobile Responsive */
@media (max-width: 768px) {
    .advisor-highlight {
        padding: 3rem 2rem;
    }
    
    .advisor-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .advisor-photo {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .advisor-name {
        font-size: 1.4rem;
    }
    
    .advisor-title {
        font-size: 1rem;
    }
    
    .advisor-info h3 {
        font-size: 1.6rem;
        justify-content: center;
    }
    
    .advisor-info p {
        font-size: 1rem;
        text-align: left;
    }
    
    .iban-notice {
        padding: 1.5rem;
    }
    
    .iban-notice p {
        font-size: 0.95rem;
        text-align: left;
    }
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    background: var(--primary);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    box-shadow: var(--shadow-light);
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-light);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    font-size: 2rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: var(--secondary);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.benefit-card h3 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card h3 i {
    color: var(--accent);
}

.benefit-card ul {
    list-style: none;
    position: relative;
}

.benefit-card ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.benefit-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.benefit-card ul li strong {
    color: var(--accent-light);
}

/* Steps and Benefits - Mobile Responsive */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
}

/* Services Section - Modernisiert */
.services-section {
    background-color: var(--secondary);
    padding: 6rem 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--primary);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow);
}

.service-content h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Transport Specialization Section */
.specialization-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%), url('../img/special_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.specialization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(59, 130, 246, 0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
}

.specialization-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.specialization-content {
    max-width: 900px;
}

.specialization-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 700;
}

.specialization-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.specialization-features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.specialization-feature {
    background: var(--primary);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.specialization-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.specialization-feature i {
    color: var(--accent-light);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.specialization-feature:hover i {
    transform: scale(1.15);
    color: var(--accent);
}

.specialization-feature h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialization-feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.certification-note {
    margin-top: 3rem;
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    text-align: left;
    max-width: 700px;
}

.certification-note p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.certification-note strong {
    color: var(--accent-light);
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background-color: var(--secondary);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--primary);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-light);
}

.review-info h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.review-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-stars i {
    margin-right: 0.2rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.us-army-badge {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 0.5rem;
}

/* Tracking Section - Modernisiert */
.tracking-section {
    padding: 6rem 0;
    background-color: var(--primary);
    position: relative;
}

.tracking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tracking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 3.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
}

.tracking-form {
    margin-top: 2.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--primary);
    color: var(--text);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.tracking-example {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.checkbox-group input {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.95rem;
    font-weight: normal;
    color: var(--text-light);
}

.checkbox-group a {
    color: var(--accent-light);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.business-contact {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.business-contact h3 {
    color: var(--text);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.business-contact p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* FAQ Section - Modernisiert */
.faq-section {
    padding: 6rem 0;
    background-color: var(--secondary);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.2rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--primary);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    background: var(--primary);
    padding: 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    transition: var(--transition);
    color: var(--accent-light);
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.active {
    padding: 0 1.8rem 1.8rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section - Modernisiert */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L1000,0 L1000,1000 L0,1000 Z"></path></svg>');
    background-size: cover;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
}

.cta-btn {
    background: white;
    color: var(--accent);
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow);
    position: relative;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer - Modernisiert */
footer {
    background-color: var(--primary);
    color: var(--text);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-column ul li a i {
    font-size: 0.8rem;
}

.company-info {
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
    text-align: center;
}

.company-info p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Terms and Privacy Pages Styles */
.terms-section, .privacy-section {
    color: var(--text);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background-color: var(--primary);
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-light);
}

.content-block.highlight-block {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border: none;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
}

.feature-list li i {
    color: var(--accent);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-info {
    background-color: rgba(59, 130, 246, 0.1);
    padding: 2rem;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-info a {
    color: var(--accent-light);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


.fee-table {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-range {
    font-weight: 600;
    color: var(--text);
}

.fee-rate {
    color: var(--accent-light);
    font-weight: 500;
}

.fee-description {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-rights {
    background-color: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
    margin-top: 1.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.5rem;
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--accent-dark);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--accent-dark);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-block {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    
    .fee-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sharing-item, .security-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        position: relative;
        padding: 1rem 0;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }
    
    nav ul li {
        margin: 0;
        padding: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .tracking-container {
        padding: 2.5rem 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-icon {
        margin-bottom: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .specialization-features {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Prevent horizontal scroll */
    body, html {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Ensure all sections don't overflow */
    section {
        overflow-x: hidden;
    }
    
    /* Fix grid layouts for mobile */
    .highlight-grid,
    .services-grid,
    .trust-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Adjust padding for mobile */
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Fix buttons */
    .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Fix review cards */
    .review-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Reduce padding on sections for mobile */
    .business-highlights,
    .trust-section,
    .services-section,
    .specialization-section,
    .reviews-section,
    .tracking-section,
    .faq-section,
    .cta-section,
    footer {
        padding: 3rem 0;
    }
    
    /* Fix certification note */
    .certification-note {
        padding: 1rem;
        text-align: left;
    }
    
    /* Fix review cards padding */
    .review-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .highlight-card,
    .process-step {
        padding: 1.5rem 1rem;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Smaller buttons on very small screens */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Adjust step numbers */
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Smaller service icons */
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .specialization-feature i {
        font-size: 2.5rem;
    }
    
    /* Adjust tracking container */
    .tracking-container {
        padding: 2rem 1rem;
    }
    
    /* Smaller avatar */
    .review-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.7rem;
    }
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

