:root {
    --primary-color: var(--bs-primary);
    --secondary-color: var(--bs-secondary);
    --accent-color: #E9C46A;
    --light-color: #F8F9FA;
    --dark-color: #2A2A2A;
    --swiss-red: #DA291C;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    background-color: #FCFCFC;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0;
    color: white;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.swiss-flag {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--swiss-red);
    margin-right: 10px;
}

.swiss-flag:after {
    content: '';
    position: absolute;
    background: white;
    height: 12px;
    width: 4px;
    top: 4px;
    left: 8px;
}

.swiss-flag:before {
    content: '';
    position: absolute;
    background: white;
    height: 4px;
    width: 12px;
    top: 8px;
    left: 4px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    background-color: var(--primary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* News Section */
.news {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.news-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.news-img {
    object-fit: cover;
}

.news-date {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.news-tag {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    background-color: rgba(14, 59, 98, 0.1);
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Price Section */
.price {
    background-color: var(--light-color);
    padding: 100px 0;
}

.price-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.price-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.price-period {
    font-size: 14px;
    opacity: 0.8;
}

.price-feature {
    padding: 15px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-feature i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.price-footer {
    padding: 30px;
    text-align: center;
}

.price-popular {
    position: relative;
}

.price-popular:before {
    content: 'Beliebt';
    position: absolute;
    top: 18px;
    right: -28px;
    transform: rotate(45deg);
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.form-control {
    border: none;
    background-color: #F5F7FA;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-submit {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #e55a29;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Alert */
.alert-success {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    animation: fadeIn 0.5s, fadeOut 0.5s 3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}