
/* Mobile Hero padding fixes */
@media only screen and (max-width: 768px) {
  .hero {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  
  .hero .hero-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 450px) {
  .hero {
    padding-top: 0px;
    padding-bottom: 15px;
  }
  
  .hero .hero-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* Education Section Styles */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.education-card {
    background: #100a1f;
    border: 2px solid #3c266e;
    border-radius: 10px;
    padding: 30px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.education-card:hover {
    border-color: #5a3f8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(60, 38, 110, 0.4);
}

.education-card h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 18px;
}

.education-card p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Wissensquellen specific styles */
.wissensquellen-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.preview-item {
    font-size: 14px;
}

.preview-item strong {
    color: #3c266e;
}

.preview-item span {
    color: #ccc;
}

.preview-cta {
    padding: 12px;
    background: rgba(60, 38, 110, 0.1);
    border-radius: 6px;
    text-align: center;
}

.preview-cta span {
    color: #3c266e;
    font-size: 14px;
}

/* Main education section */
.education-section {
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.education-section h2 {
    margin-bottom: 30px;
    font-size: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .education-card {
        padding: 20px;
    }
    
    .wissensquellen-preview {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
