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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

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

.header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #b9e9f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 30px;
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.section-title {
    color: #b9e9f0;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.content-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-indent: 2em;
}

.content-card p:first-of-type {
    margin-top: 5px;
}

.content-card p:last-of-type {
    margin-bottom: 0;
}

.highlight + p {
    margin-top: 30px;
}

.highlight {
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid;
}

.highlight:nth-child(2) {
    background: rgba(255, 107, 107, 0.15);
    border-color: #ff6b6b;
}

.highlight:nth-child(3) {
    background: rgba(78, 205, 196, 0.15);
    border-color: #4ecdc4;
}

.highlight:nth-child(4) {
    background: rgba(156, 163, 175, 0.15);
    border-color: #9ca3af;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px) rotateX(30deg);
        opacity: 0;
    }
    to {
        transform: translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.value-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h3 {
    color: #ffd166;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 30px;
    opacity: 0.6;
    font-size: 0.95rem;
    color: #94a3b8;
}

.floating-home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.6);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.floating-home-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .content-card {
        padding: 25px;
    }

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

    .floating-home-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}