/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    padding: 60px 20px 20px 20px;
    background-color: #000000;
}

.logo {
    max-width: 90%;
    width: 1200px;
    height: auto;
    display: block;
}

/* Main Content */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 60px 40px;
}

/* Sections */
.section {
    margin-bottom: 60px;
}

.section:last-child {
    margin-bottom: 60px;
}

.section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFD700;
    letter-spacing: -1px;
}

.section p {
    font-size: 1.8rem;
    line-height: 1.7;
    color: #FFFFFF;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid #333333;
}

.name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.contact {
    font-size: 1.3rem;
}

.contact a {
    color: #FFD700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact a:hover {
    opacity: 0.7;
}

.separator {
    margin: 0 15px;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 30vh;
        padding: 40px 20px 15px 20px;
    }
    
    .logo {
        max-width: 95%;
    }
    
    .content {
        padding: 25px 25px 40px 25px;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .section h2 {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .section p {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    
    .footer {
        padding: 40px 25px;
    }
    
    .name {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contact {
        font-size: 1rem;
    }
    
    .separator {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .section p {
        font-size: 1.1rem;
    }
    
    .name {
        font-size: 1.3rem;
    }
    
    .contact {
        font-size: 0.9rem;
    }
}
