/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FAFAFA;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
     max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    border-left: 5px solid #10B981;
    background: #065F46;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #10B981;
    text-decoration: underline;
}

.btn-accept {
    background: #10B981;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-logo h1 {
    color: #065F46;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-logo h1 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo h1 a:hover {
    color: #10B981;
}

.nav-menu {
    display: flex;
    list-style: none;
  text-transform: uppercase;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1F2937;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #10B981;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #10B981;
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #065F46;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #f0f9ff 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    color: #065F46;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #1F2937;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: brightness(0.7);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: filter 0.3s ease;
}

.hero-image img:hover {
    filter: brightness(0.8);
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.course-features li {
    padding: 8px 0;
    color: #1F2937;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Financial Tools Section */
.financial-tools {
    padding: 80px 0;
    background: #f8fafc;
}

.financial-tools h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 1rem;
}

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

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    margin-bottom: 1.5rem;
}

.tool-card h3 {
    color: #065F46;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.tool-features li {
    padding: 5px 0;
    color: #1F2937;
    font-size: 0.9rem;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: white;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 1rem;
}

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

.story-card {
    background: linear-gradient(135deg, #065F46 0%, #10B981 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
}

.story-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.story-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.story-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Market Insights Section */
.market-insights {
    padding: 80px 0;
    background: #f8fafc;
}

.market-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 1rem;
}

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

.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
}

.insight-card.featured {
    border: 2px solid #10B981;
}

.insight-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #10B981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.insight-card h3 {
    color: #065F46;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: #6b7280;
}

.insight-category {
    background: #065F46;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.insights-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 1rem;
}

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

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10B981;
}

.faq-item h3 {
    color: #065F46;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #1F2937;
    line-height: 1.6;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #10B981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #065F46;
    border: 2px solid #065F46;
}

.btn-secondary:hover {
    background: #065F46;
    color: white;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    word-break: break-word;
    white-space: normal;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #1F2937;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    word-break: break-word;
    white-space: normal;
}

.about-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 10px;
    border-left: 4px solid #10B981;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 0.5rem;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: #FAFAFA;
}

.courses h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 3rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.course-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card.featured {
    border: 2px solid #10B981;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #10B981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.course-card h3 {
    color: #065F46;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.course-card p {
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.course-price {
    font-size: 2rem;
    font-weight: bold;
    color: #10B981;
    margin-bottom: 1.5rem;
}

.btn-course {
    background: #3B82F6;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-course:hover {
    background: #2563EB;
}

.business-solution {
    background: #065F46;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.business-solution h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.business-solution p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.solution-price {
    font-size: 3rem;
    font-weight: bold;
    color: #10B981;
    margin-bottom: 2rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 3rem;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 15px;
}

.member-photo {
    margin-bottom: 1.5rem;
}
.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.solution-features {
    list-style: none;
    margin-bottom: 2rem;

}

.team-member h3 {
    color: #065F46;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-member p:first-of-type {
    color: #10B981;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #FAFAFA;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #1F2937;
}

.testimonial-author h4 {
    color: #065F46;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #10B981;
    font-weight: bold;
}

/* Finanzanalyse Section */
.finanzanalyse {
    padding: 80px 0;
    background: #FAFAFA;
}

.finanzanalyse h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #1F2937;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.finanzanalyse-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.finanzanalyse-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.finanzanalyse-item.reverse {
    direction: rtl;
}

.finanzanalyse-item.reverse > * {
    direction: ltr;
}

.finanzanalyse-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.finanzanalyse-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.finanzanalyse-image:hover img {
    transform: scale(1.05);
}

.finanzanalyse-text h3 {
    color: #065F46;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.finanzanalyse-text p {
    color: #1F2937;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.finanzanalyse-text li {
    color: #1F2937;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.finanzanalyse-text li::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #065F46;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #1F2937;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10B981;
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.btn-submit {
    background: #10B981;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #059669;
}

.btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #065F46;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #10B981;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10B981;
}

.footer-bottom {
    border-top: 1px solid #10B981;
    padding-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .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: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
    display: block;
        gap: 2rem;
    }
    
    .about h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-text {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        text-align: justify;
        hyphens: auto;
        word-spacing: -0.5px;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }
    
    .about-features {
        margin-top: 1.5rem;
    }
    
    .about-features li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 25px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
    }
    
    .about-stats {
        flex-direction: column;
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 1;
        margin: 0 10px;
    }
    
    .finanzanalyse-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .finanzanalyse-item.reverse {
        direction: ltr;
    }
    
    .finanzanalyse-image img {
        height: 250px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        padding: 0 5px;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        text-align: justify;
        hyphens: auto;
        word-spacing: -1px;
        letter-spacing: -0.2px;
    }
    
    .about-features li {
        font-size: 0.85rem;
        padding: 6px 0;
        padding-left: 20px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .about, .courses, .team, .testimonials, .contact {
        padding: 60px 0;
    }
    
    .about h2, .courses h2, .team h2, .testimonials h2, .contact h2 {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .course-card, .team-member, .testimonial-card {
        padding: 1.5rem;
    }
    
    .business-solution {
        padding: 2rem;
    }
    
    .solution-price {
        font-size: 2.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

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