/* Reset */
body, html, ul, li, h1, a, button, input {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    background: #0f1e36;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background: #0056b3;
}

.hero {
    position: relative;
    background: url('back3.png') no-repeat center center/cover;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero .search-bar {
    display: flex;
    gap: 10px;
}

.hero .search-bar input {
    padding: 10px;
    font-size: 1rem;
    flex: 1;
    border: none;
    border-radius: 5px;
}

.hero .search-bar button {
    padding: 10px 20px;
    font-size: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.footer {
    background-color: #0f1e36;
    color: #ffffff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-logo img {
    width: 50px;
    margin-bottom: 10px;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px 0;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #d1d1d1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.footer-section p {
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #2a3b54;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #d1d1d1;
}

/* Responsivlik */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo, .footer-section {
        margin-bottom: 20px;
    }
}
