

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.05),
        transparent
    );
    transition: left 0.6s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Card Icons */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.content-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #764ba2, #667eea);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Typography */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Privacy and Terms Sections */
.privacy-section,
.terms-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.privacy-section h5,
.terms-section h5 {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-section ul,
.terms-section ul {
    list-style: none;
    padding: 0;
}

.privacy-section li,
.terms-section li {
    padding: 0.5rem 0;
    position: relative;
    padding-right: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
}

.privacy-section li::before,
.terms-section li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0.5rem;
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
}

.privacy-section li:hover,
.terms-section li:hover {
    color: #333;
    transform: translateX(5px);
}

/* Value Items */
.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.2);
    color: #764ba2;
}

.value-item h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Team Members */
.team-member {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.team-member:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .member-photo {
    border-color: #667eea;
    transform: scale(1.05);
}

.team-member h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member .text-muted {
    color: #667eea !important;
    font-weight: 500;
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.content-card {
    animation: fadeInUp 0.8s ease forwards;
}

.content-card:nth-child(1) {
    animation-delay: 0.1s;
}
.content-card:nth-child(2) {
    animation-delay: 0.2s;
}
.content-card:nth-child(3) {
    animation-delay: 0.3s;
}
.content-card:nth-child(4) {
    animation-delay: 0.4s;
}
.content-card:nth-child(5) {
    animation-delay: 0.5s;
}
.content-card:nth-child(6) {
    animation-delay: 0.6s;
}

.logo {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

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

    .section-text {
        font-size: 1rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-item,
    .team-member {
        padding: 1rem;
    }

    .member-photo {
        width: 100px;
        height: 100px;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .privacy-section,
    .terms-section {
        padding: 1rem;
        margin: 1rem 0;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 1rem;
    }

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

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

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

/* Selection Color */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: #333;
}

/* Focus States */
.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Print Styles */
@media print {
    .bg-gradient {
        background: white !important;
    }

    .content-card {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .btn {
        display: none;
    }
}
