:root {
    --primary: #2D3436;
    --secondary: #636E72;
    --accent: #4A90E2;
    --background: #F5F6FA;
    --white: #FFFFFF;
    --gradient-start: #EEF2FF;
    --gradient-end: #E0E7FF;
}

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

body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--primary);
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.grid {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.content-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.lead {
    font-size: 1.25rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0;
    align-items: start;
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 4px solid var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.credentials, .innovation {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.credentials h4, .innovation h4, .philosophy h4 {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credentials h4::before, .innovation h4::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

ul {
    list-style: none;
    margin: 0;
}

ul li {
    padding: 0.75rem 0;
    color: var(--primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

ul li:last-child {
    border-bottom: none;
}

ul li::before {
    content: "→";
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.philosophy {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.quote {
    font-style: italic;
    color: var(--primary);
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent);
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
}

.quote::before {
    content: """;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    left: -0.5rem;
    top: -1rem;
}

.content-right {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.header-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 0.75rem;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 4px solid var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.header-text {
    flex: 1;
}

.name-with-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.linkedin-link {
    color: var(--accent);
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #0077B5;
}

.content-sections {
    display: grid;
    gap: 2rem;
}

.credentials, .innovation, .philosophy {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .content-right {
        padding: 2rem;
    }

    .header-with-image {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .name-with-social {
        justify-content: center;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .content-sections {
        gap: 1.5rem;
    }

    .credentials, .innovation, .philosophy {
        padding: 1.5rem;
    }
} 