:root {
  --primary-color: #CA1385; /* Rosa */
  --secondary-color: #004799; /* Blau */
  --text-color: #3b3b3b;
  --background-color: #ffffff;
  --light-gray: #f4f4f4;
  --medium-gray: #e0e0e0;
  --dark-gray: #666666;

  --font-primary: 'Raleway', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 400; /* Raleway Regular */
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

h1, h2, h3 {
  font-family: var(--font-primary);
  font-weight: 500; /* Raleway Medium */
  margin-top: 0;
}

h1, h2 {
  color: var(--primary-color);
}

h3 {
  color: var(--secondary-color);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Basic Button Style */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #a80f6d;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #00336e;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Basic Card Style */
.card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

/* Section Padding */
section {
    padding: 60px 0;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    body { /* Force padding on body for small screens */
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .container { /* Reduce padding further on small mobile */
        padding: 0 10px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* Global border-radius for all divs and sections */
/* Entfernt:
div,
section {
    border-radius: 20px !important;
} 
*/ 