:root {
    --primary: var(--bs-primary);
    --secondary: var(--bs-secondary);
    --accent: #f39c12;
    --light: #f8f9fa;
    --dark: #2c3e50;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

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

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

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

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

/* Hero Section */
#hero {
    background: linear-gradient(var(--primary), var(--secondary)),  no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
    position: relative;
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.9) 0%, rgba(46, 134, 193, 0.8) 100%);
}

#hero h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

#hero .hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

#hero .hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

#hero .hero-shape .shape-fill {
    fill: #FFFFFF;
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: white;
}

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

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

.about-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* News Section */
#news {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s;
    background-color: white;
}

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

.news-img {
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.news-title {
    font-weight: 700;
    margin: 10px 0;
    color: var(--dark);
}

.news-text {
    color: #6c757d;
}

/* Pricing Section */
#pricing {
    padding: 100px 0;
    background-color: white;
}

.pricing-card {
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s;
}

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

.pricing-card.featured {
    border: 2px solid var(--accent);
}

.pricing-card.featured::before {
    content: "Beliebt";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    transform: translateX(30%) translateY(0%) rotate(45deg);
    transform-origin: top left;
    width: 150px;
    text-align: center;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-weight: 700;
    color: var(--dark);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--primary);
}

.pricing-duration {
    font-size: 0.9rem;
    color: #6c757d;
}

.pricing-features {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.contact-info {
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent);
    text-decoration: none;
}

.social-icon {
    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;
}

.social-icon:hover {
    background-color: var(--accent);
    color: white;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    margin-top: 50px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}