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

:root {
    --bg-color: #fffffe;
    --headline-color: #272343;
    --paragraph-color: #2d334a;
    --button-color: #ffd803;
    --button-text-color: #272343;
    --stroke-color: #272343;
    --main-color: #fffffe;
    --highlight-color: #ffd803;
    --secondary-color: #e3f6f5;
    --tertiary-color: #bae8e8;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--paragraph-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 216, 3, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    color: var(--headline-color);
    margin-bottom: 1rem;
    font-weight: 700;
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
}

.hero p {
    font-size: 1.5rem;
    color: var(--paragraph-color);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 1s ease-out 0.3s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Grid */
.image-grid {
    padding: 80px 0;
    background: var(--bg-color);
}

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

.grid-item {
    height: 400px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(39, 35, 67, 0.1);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    background: linear-gradient(45deg, var(--tertiary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--headline-color);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Section Styling */
.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    color: var(--headline-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--highlight-color);
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--secondary-color);
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image {
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

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

.placeholder-image-small {
    background: linear-gradient(45deg, var(--highlight-color), #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--headline-color);
    font-weight: bold;
}

/* Features Section */
.features {
    background: var(--bg-color);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--main-color);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--tertiary-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 35, 67, 0.1);
    border-color: var(--highlight-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--headline-color);
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing {
    background: var(--secondary-color);
}

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

.pricing-card {
    background: var(--main-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid var(--highlight-color);
}

.pricing-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--highlight-color);
    color: var(--button-text-color);
    padding: 5px 20px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price {
    font-size: 3rem;
    color: var(--headline-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.price-duration {
    color: var(--paragraph-color);
    margin-bottom: 30px;
}

.pricing-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.pricing-info {
    text-align: center;
    margin-top: 40px;
}

.pricing-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    background: var(--bg-color);
}

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

.review-item {
    background: var(--main-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(39, 35, 67, 0.1);
    position: relative;
}

.review-item::before {
    content: '❝';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--highlight-color);
    line-height: 1;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 20px;
}

.review-author {
    font-weight: bold;
    color: var(--headline-color);
}

.stars {
    color: var(--highlight-color);
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    background: var(--tertiary-color);
}

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

.contact-info h3 {
    color: var(--headline-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.contact-detail {
    margin-bottom: 20px;
}

.contact-form {
    background: var(--main-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 35, 67, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--headline-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--tertiary-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.btn {
    background: var(--button-color);
    color: var(--button-text-color);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 216, 3, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

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

    .about-images {
        grid-template-columns: 1fr;
    }

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

footer {
    background-color: var(--bg-color);
    padding: 40px 20px;
    border-top: 3px solid var(--bg-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-note {
    font-size: 1rem;
    color: var(--paragraph-color);
}

.demo-hint {
    font-size: 0.9rem;
    color: var(--paragraph-color);
    background-color: var(--tertiary-color);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--tertiary-color);
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--headline-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--highlight-color);
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px;
    }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}