/* Base Styles */
:root {
    --primary-color: #3C5959;
    --secondary-color: #F8DE65;
    --text-color: #333;
    --light-bg: #F5F3E7;
    --white: #FFFFFF;
    --gray: #666;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: #e9d259;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.center-button {
    text-align: center;
    margin-top: 30px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cookie-icon {
    margin-bottom: 10px;
}

.cookie-icon img {
    width: 60px;
    height: auto;
}

.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cookie-buttons .btn {
    width: 100%;
    max-width: 300px;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 22px;
    font-weight: bold;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: var(--white);
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 89, 89, 0.85);
}

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

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features h2, .program h2, .results h2, .testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 32px;
}

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

.feature-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

/* Program Section */
.program {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.program-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.program-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-item h3 {
    color: var(--primary-color);
    padding: 20px 20px 10px;
    font-size: 20px;
}

.program-item p {
    padding: 0 20px 20px;
}

/* Results Section */
.results {
    padding: 80px 0;
    background-color: var(--white);
}

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

.result-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.result-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
}

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

.testimonial {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}


.testimonial-author p {
    font-weight: bold;
    color: var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    margin-top: 80px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 22px;
    font-weight: bold;
}

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

.footer-links a {
    color: var(--white);
}

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

.footer-copyright {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0 10px 10px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cookie-buttons .btn {
        max-width: 200px;
    }
}

/* About Section Styles */
.about-section {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.about-hero {
    background-image: url('./imgs/7.png');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.about-hero h1 {
    color: white;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 8px;
}

.about-hero-content p, .about-hero-content h2 {
    color: white;
    text-align: center;
}

.about-hero-content h2 {
    margin: 20px 0;
}

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

/* Motivation Section */
.motivation-section {
    padding: 50px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.motivation-section h2, .culture-section h2 {
    color: #3C5959;
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.motivation-item {
    padding: 0 20px;
    border-left: 3px solid #3C5959;
}

.motivation-item h3 {
    color: #3C5959;
    margin-bottom: 15px;
    font-size: 22px;
}

/* Culture Section */
.culture-section {
    padding: 50px 0;
    background-color: #F9F5E0;
    border-radius: 10px;
}

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

.culture-item {
    padding: 0 20px;
    border-left: 3px solid #F8DE65;
}

.culture-item h3 {
    color: #3C5959;
    margin-bottom: 15px;
    font-size: 22px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        height: auto;
    }
    
    .overlay {
        padding: 60px 20px;
    }
    
    .about-hero h1 {
        font-size: 28px;
    }
    
    .motivation-item, .culture-item {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .motivation-section h2, .culture-section h2 {
        font-size: 28px;
    }
}

/* Praktikum Section Styles */
.praktikum-section {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.praktikum-hero {
    background-image: url('./imgs/8.png');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.praktikum-hero h1 {
    color: white;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.praktikum-hero-content {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 8px;
}

.praktikum-hero-content p {
    color: white;
    text-align: center;
}

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

/* Why Choose Us Section */
.why-section {
    padding: 50px 0;
    margin-bottom: 50px;
}

.why-section h2, .program-structure h2, .intern-testimonials h2 {
    color: #3C5959;
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.benefit-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-image {
    height: 200px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item h3 {
    color: #3C5959;
    padding: 20px 20px 10px;
    font-size: 20px;
}

.benefit-item p {
    padding: 0 20px 20px;
}

/* Program Structure Section */
.program-structure {
    padding: 50px 0;
    margin-bottom: 50px;
}

.structure-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.structure-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.structure-item h3 {
    color: #3C5959;
    margin-bottom: 20px;
    font-size: 24px;
}

.structure-content {
    position: relative;
    padding-left: 30px;
}

.structure-marker {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #3C5959;
    border-radius: 2px;
}

.structure-content ul {
    list-style-type: none;
    margin-top: 15px;
    margin-bottom: 15px;
}

.structure-content li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.structure-content li:before {
    content: "•";
    color: #3C5959;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.intern-testimonials {
    padding: 50px 0;
    margin-bottom: 50px;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    background-color: #F5F3E7;
    border-radius: 8px;
    padding: 30px;
}

.testimonial-item h3 {
    color: #3C5959;
    margin-bottom: 20px;
    font-size: 24px;
}

.testimonial-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    flex: 1;
    font-style: italic;
}

/* Call to Action Section */
.cta-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.cta-content h3 {
    color: #3C5959;
    margin-bottom: 20px;
    font-size: 24px;
}

.cta-content p {
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #F8DE65;
    color: #333;
}

.btn-primary:hover {
    background-color: #e9d259;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .praktikum-hero {
        height: auto;
    }
    
    .overlay {
        padding: 60px 20px;
    }
    
    .praktikum-hero h1 {
        font-size: 28px;
    }
    
    .testimonial-content {
        flex-direction: column;
    }
    
    .testimonial-image {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 20px;
    }
    
    .why-section h2, .program-structure h2, .intern-testimonials h2 {
        font-size: 28px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Kontakt Section Styles */
.kontakt-section {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 60px 0;
    background-color: #F5F5F0;
}

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

.kontakt-section h1 {
    color: #3C5959;
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.kontakt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.kontakt-form {
    flex: 1 1 500px;
}

.kontakt-info {
    flex: 0 1 400px;
    display: flex;
    align-items: flex-start;
}

.info-box {
    background-color: #EAEAE0;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
}

.info-box p {
    margin-bottom: 15px;
    font-size: 16px;
}

.info-box a {
    color: #3C5959;
    text-decoration: none;
    font-weight: bold;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3C5959;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0D8;
    border-radius: 6px;
    background-color: #EAEAE0;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background-color: #F8DE65;
    color: #333;
}

.btn-primary:hover {
    background-color: #e9d259;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .kontakt-container {
        flex-direction: column;
    }
    
    .kontakt-info {
        order: -1;
    }
    
    .kontakt-section h1 {
        font-size: 28px;
    }
    
    .form-group button {
        width: 100%;
    }
}