:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.header {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.logo {
    height: 60px;
    background-color: white;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.profile-section {
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.profile-details p {
    font-size: 1.05rem;
    color: #555;
    background-color: var(--bg-color);
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-details span {
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.tps-section {
    padding: 30px 40px 40px;
}

.tps-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.tp-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: white;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    width: 120px;
    height: 120px;
    transition: all 0.3s ease;
}

.tp-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.tp-number {
    font-size: 2rem;
    font-weight: bold;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.tp-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

.tp-card:hover .tp-number {
    color: var(--accent-color);
}