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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #84cc16 0%, #10b981 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    padding: 40px;
    margin: 20px;
}

header {
    text-align: center;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    font-size: 2.5rem;
    color: #65a30d;
    margin-bottom: 30px;
    text-align: center;
}

.content {
    margin: 30px 0;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
}

.passion {
    font-size: 1.2rem;
    color: #10b981;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.projects {
    margin: 30px 0;
    text-align: center;
}

.projects h2 {
    font-size: 1.3rem;
    color: #65a30d;
    margin-bottom: 20px;
}

.project-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.project-list li {
    margin-bottom: 20px;
    padding: 15px;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #84cc16;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(132, 204, 22, 0.2);
}

.project-list a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #65a30d;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.project-list a:hover {
    color: #84cc16;
}

.project-desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.company-info {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
    border: 1px solid #d9f99d;
}

.company-info p {
    font-size: 0.95rem;
    color: #666;
    margin: 5px 0;
}

.location {
    font-size: 0.85rem;
    color: #888;
}

.contact {
    margin-top: 30px;
    text-align: center;
}

.contact h2 {
    font-size: 1.3rem;
    color: #65a30d;
    margin-bottom: 15px;
}

.contact a {
    color: #10b981;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #84cc16;
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        margin: 10px;
    }

    header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .passion {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .contact h2 {
        font-size: 1.1rem;
    }

    .contact a {
        font-size: 1rem;
    }
}
