* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0E0E0E;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFED00;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFED00;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #FFED00, #FFF700);
    -webkit-background-clip: text;
    background-clip: text;
}

.logo img{
    border-radius: 20px;
}

@media (max-width: 768px) {
    .logo img{
        width: 100%;
        height: 100%;
    }
}

.main-content {
    margin-bottom: 50px;
}

.main-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #0E0E0E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.main-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

.company-info {
    background: linear-gradient(135deg, #FFED00 0%, #FFF700 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #FFED00;
    box-shadow: 0 10px 30px rgba(255, 237, 0, 0.3);
}

.company-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0E0E0E;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact p {
    font-size: 1rem;
    color: #0E0E0E;
    margin: 8px 0;
    font-weight: 500;
}

.contact a {
    color: #0E0E0E;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 4px;
}

.contact a:hover {
    background: #0E0E0E;
    color: #FFED00;
    text-decoration: none;
    transform: translateY(-1px);
}

.footer {
    border-top: 2px solid #FFED00;
    padding-top: 20px;
    margin-top: 20px;
}

.footer p {
    font-size: 0.9rem;
    color: #0E0E0E;
    margin: 0;
    font-weight: 500;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeInUp 0.8s ease-out;
}

.logo h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.main-content {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.company-info {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.footer {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .content {
        padding: 40px 25px;
    }
    
    .logo h1 {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content p {
        font-size: 1.1rem;
    }
    
    .company-info {
        padding: 25px 20px;
    }
    
    .company-info h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .main-content p {
        font-size: 1rem;
    }
    
    .company-info {
        padding: 20px 15px;
    }
    
    .company-info h3 {
        font-size: 0.9rem;
    }
}
