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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #faf9f6;
    color: #1a1a1a;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

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

/* Profile Section */
.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.profile-image-wrapper {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: 55% 30%;
    transform: scale(1.2);
}

.profile-content {
    flex: 1;
}

.name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.social-icons a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #2563eb;
}

.bio {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
}

.bio-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.2s ease;
}

.bio-link:hover {
    text-decoration: underline;
}

/* Buttons Section */
.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cta-button:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.button-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.evolve-icon {
    background-color: #2563eb;
}

.cleanup-icon {
    background-color: #10b981;
}

.calendar-icon {
    background-color: #7c3aed;
}

.church-icon {
    background-color: #2563eb;
}

.button-text {
    flex: 1;
    text-align: center;
}

.button-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.button-subtitle {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
}

/* Portfolio Section */
.portfolio-section {
    margin-top: 60px;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

.portfolio-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portfolio-item {
    display: block;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.portfolio-item:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.portfolio-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.portfolio-description {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 20px 16px;
    }

    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-content {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .name {
        font-size: 24px;
    }

    .bio {
        font-size: 15px;
    }

    .cta-button {
        padding: 16px;
    }

    .button-icon {
        width: 40px;
        height: 40px;
    }

    .button-title {
        font-size: 14px;
    }

    .button-subtitle {
        font-size: 12px;
    }
}
