:root {
    --primary-color: #FF9800;
    --primary-light: #FFB74D;
    --primary-dark: #F57C00;
    --accent-color: #8D6E63;
    --text-color: #333333;
    --bg-color: #FFF3E0;
    --white: #ffffff;
    --font-main: 'Zen Maru Gothic', sans-serif;
    --font-heading: 'M PLUS Rounded 1c', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

/* Header */
.site-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.5rem;
    text-align: center;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-color) 0%, #FFE0B2 100%);
    overflow: hidden;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    background-color: var(--primary-dark);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.features .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
}

.link-card {
    background-color: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    text-align: left;
}

.link-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.link-card .icon {
    font-size: 2.5rem;
    margin-right: 20px;
}

.link-card .text h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.link-card .text p {
    font-size: 0.9rem;
    color: #888;
    word-break: break-all;
}

.link-card .arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Footer */
.site-footer {
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

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

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

/* Responsive */
@media (min-width: 768px) {
    .hero {
        padding: 100px 20px;
    }

    .hero-content h2 {
        font-size: 3.5rem;
    }
}