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

body {
    font-family: Arial, sans-serif;
    background-image: url('img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    color: white;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    max-width: 90%;
    margin: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    max-width: 80%;
    height: 95vh;
    justify-content: space-between;
}

.responsive-image {
    max-width: 40%;
    height: auto;
    display: block;
}

.map-container {
    width: 40%;
    max-width: none;
    margin: 4px 0 40px 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px;
    border-radius: 10px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }

    .image-container {
        gap: 3px;
        max-width: 90%;
    }
    
    .responsive-image {
        max-width: 50%;
    }
    
    .map-container {
        width: 50%;
        margin: 3px 0 25px 0;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 0.9rem;
    }

    .image-container {
        gap: 2px;
        max-width: 95%;
    }
    
    .responsive-image {
        max-width: 55%;
    }
    
    .map-container {
        width: 55%;
        margin: 3px 0 20px 0;
    }
    
    .map-container iframe {
        height: 200px;
    }
} 