* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #ffffff;
    background-color: #000000;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./fotosito2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px) brightness(0.3);
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

header {
    text-align: center;
    padding: 80px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 80px;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.psi-symbol {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 5px;
}

h1 {
    font-size: 3em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.1em;
    color: #999;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section {
    margin-bottom: 100px;
    padding: 0 20px;
    animation: fadeIn 1s ease;
}

h2 {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

p {
    font-size: 1.05em;
    color: #cccccc;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.9;
}

.divider {
    height: 1px;
    background-color: #333;
    margin: 80px 0;
}

.contact-section {
    padding: 60px 40px;
    border: 1px solid #333;
    margin-top: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    padding: 30px 0;
}

.contact-label {
    font-size: 0.85em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-value {
    font-size: 1.1em;
    color: #ffffff;
    font-weight: 300;
}

.footer-info {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-info p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    header {
        padding: 60px 0;
    }

    .section {
        margin-bottom: 60px;
    }

    .contact-section {
        padding: 40px 20px;
    }
}