/* ============================================
   CSU RAUBLING - MODERN CLEAN DESIGN
   ============================================ */

:root {
    --csu-blue: #0080c8;
    --csu-green: #a2c516;
    --dark-blue: #005a8f;
    --light-blue: #e6f4fb;
    --dark-green: #7a9711;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    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: 80px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--light-blue);
    color: var(--csu-blue);
}

.nav-link-cta {
    background: var(--csu-blue);
    color: var(--white);
}

.nav-link-cta:hover {
    background: var(--dark-blue);
    color: var(--white);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--csu-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--csu-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    margin-top: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--csu-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--csu-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-green);
}

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

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

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

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--white);
}

/* ============================================
   QUICK INFO SECTION
   ============================================ */
.quick-info {
    background: var(--gray-100);
    padding: 60px 0;
}

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

.info-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--csu-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: var(--csu-blue);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   PRIORITIES SECTION
   ============================================ */
.priorities {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--csu-blue);
    margin-bottom: 50px;
    font-weight: 800;
}

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

.priority-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 35px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.priority-card:hover {
    border-color: var(--csu-blue);
    box-shadow: 0 8px 20px rgba(0, 128, 200, 0.15);
}

.priority-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--csu-green);
    margin-bottom: 15px;
}

.priority-card h3 {
    color: var(--csu-blue);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.priority-card p {
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.6;
}

.priority-link {
    color: var(--csu-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.priority-link:hover {
    color: var(--dark-blue);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--csu-green);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.ballot-info {
    display: inline-block;
    background: var(--white);
    padding: 20px 50px;
    border-radius: 8px;
}

.ballot-list {
    color: var(--csu-blue);
    font-size: 1.5rem;
    font-weight: 800;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-left p {
    color: var(--gray-300);
    line-height: 1.8;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav a,
.footer-contact a {
    color: var(--gray-300);
    text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--csu-green);
}

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px;
        margin: 5px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav ul {
        padding: 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .ballot-info {
        padding: 15px 30px;
    }

    .ballot-list {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 50px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .priorities-grid {
        grid-template-columns: 1fr;
    }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--csu-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ============================================
   CANDIDATE PROFILE
   ============================================ */
.candidate-profile {
    padding: 80px 0;
    background: var(--white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.profile-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profile-content h2 {
    color: var(--csu-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.profile-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.profile-details {
    display: grid;
    gap: 25px;
}

.detail-item {
    padding: 25px;
    background: var(--gray-100);
    border-radius: 8px;
    border-left: 4px solid var(--csu-green);
}

.detail-item h3 {
    color: var(--csu-blue);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.detail-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.vision-content blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--gray-800);
    font-style: italic;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border-left: 6px solid var(--csu-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.value-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--csu-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    color: var(--csu-blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   THEMES DETAIL
   ============================================ */
.themes-detail {
    padding: 60px 0 80px;
    background: var(--white);
}

.theme-item {
    margin-bottom: 50px;
    background: var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
}

.theme-header {
    background: var(--csu-blue);
    color: var(--white);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--csu-green);
}

.theme-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.theme-content {
    padding: 40px;
    background: var(--white);
}

.theme-content .lead {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 25px;
    font-weight: 600;
}

.theme-content ul {
    list-style: none;
    padding: 0;
}

.theme-content ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--gray-600);
    line-height: 1.6;
}

.theme-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--csu-green);
    font-weight: 800;
    font-size: 1.2rem;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--csu-blue);
    box-shadow: 0 8px 20px rgba(0, 128, 200, 0.15);
}

.team-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--gray-100);
}

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

.team-info {
    padding: 20px;
}

.team-number {
    display: inline-block;
    background: var(--csu-green);
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.team-info h3 {
    color: var(--csu-blue);
    font-size: 1.1rem;
    margin: 8px 0;
    font-weight: 700;
}

.team-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2,
.contact-info-centered h2 {
    color: var(--csu-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-info > p,
.contact-info-centered > p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 30px;
}

.contact-item h3 {
    color: var(--csu-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p,
.contact-item a {
    color: var(--gray-600);
    line-height: 1.7;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--csu-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--csu-blue);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--dark-blue);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon i.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
}

.social-icon i.fa-facebook {
    color: #1877f2;
    font-size: 1.6rem;
}

.social-icon i.fa-x-twitter {
    color: #000000;
    font-size: 1.4rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--gray-800);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--csu-blue);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
}

/* ============================================
   INFO BOX SECTION
   ============================================ */
.info-box-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.info-box {
    background: var(--csu-blue);
    color: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.info-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.info-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 20px;
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================ */
.legal-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--csu-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 800;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--csu-blue);
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content h4 {
    color: var(--gray-800);
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-content a {
    color: var(--csu-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--black);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 5px 0;
    color: var(--gray-800);
    line-height: 1.5;
}

.cookie-banner-text p:first-child {
    color: var(--black);
    font-size: 1.1rem;
}

.cookie-banner-text a {
    color: var(--csu-blue);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.cookie-btn-accept {
    background: var(--csu-blue);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--dark-blue);
}

.cookie-btn-decline {
    background: var(--gray-200);
    color: var(--gray-800);
}

.cookie-btn-decline:hover {
    background: var(--gray-300);
}

@media screen and (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ============================================
   FACEBOOK FEED SECTION
   ============================================ */
.facebook-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.facebook-section .section-title {
    text-align: center;
    color: var(--csu-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.facebook-section .section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.facebook-embed-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

.facebook-embed-wrapper iframe {
    width: 100%;
    max-width: 500px;
    min-height: 600px;
    border-radius: 8px;
}

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

.facebook-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.facebook-cta .btn i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .facebook-section {
        padding: 60px 0;
    }

    .facebook-section .section-title {
        font-size: 2rem;
    }

    .facebook-embed-wrapper {
        padding: 10px;
    }

    .facebook-embed-wrapper iframe {
        max-width: 100%;
        height: 500px;
    }
}

/* ============================================
   BUTTON VARIATIONS
   ============================================ */
.btn-white {
    background: var(--white);
    color: var(--csu-blue);
}

.btn-white:hover {
    background: var(--gray-100);
}

/* ============================================
   RESPONSIVE - ADDITIONAL PAGES
   ============================================ */
@media screen and (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-image {
        order: -1;
    }

    .vision-content blockquote {
        font-size: 1.2rem;
        padding: 30px 25px;
    }

    .theme-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 30px;
    }

    .theme-header h2 {
        font-size: 1.6rem;
    }

    .theme-content {
        padding: 30px 25px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .info-box {
        padding: 35px 25px;
    }

    .info-box h2 {
        font-size: 1.6rem;
    }

    .info-box p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CANDIDATE DETAIL PAGE
   ============================================ */
.candidate-detail {
    padding: 60px 0 80px;
    background: var(--white);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.detail-info-box {
    background: var(--gray-100);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--csu-blue);
}

.detail-info-box h3 {
    color: var(--csu-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.detail-info-box p {
    color: var(--gray-700);
    margin-bottom: 8px;
    line-height: 1.6;
}

.detail-content h2 {
    color: var(--csu-blue);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.back-link {
    margin-top: 40px;
}

/* Make team cards clickable */
.team-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media screen and (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   ANSCHREIBEN SECTION
   ============================================ */
.anschreiben-section {
    padding: 80px 0;
    background: var(--white);
}

.anschreiben-section h2 {
    color: var(--csu-blue);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.anschreiben-content {
    max-width: 900px;
    margin: 0 auto;
}

.anschreiben-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.anschreiben-content h3 {
    color: var(--csu-blue);
    font-size: 1.6rem;
    margin: 35px 0 20px;
    font-weight: 700;
}

.anschreiben-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.anschreiben-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1.05rem;
}

.anschreiben-list li::before {
    content: '#';
    position: absolute;
    left: 0;
    color: var(--csu-green);
    font-weight: 800;
    font-size: 1.3rem;
}
