body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    padding-bottom: 100px; /* Footer için yeterli alan bırakılır */
}

header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #c0392b;
}

header .logo {
    font-size: 0; /* Metin boyutunu sıfır yaparak sadece logoyu göster */
    font-weight: bold;
}

header .logo img {
    width: 300px; /* Logonun genişliği küçültüldü */
    max-width: 100%;
    height: auto;
}


/* Alt başlıklar için stil */
h1, h2, h3, h4 {
    color: #c0392b; /* Kırmızı renk */
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif; /* Dikkat çekici kalın font */
    font-weight: bold;
}

h2 a {
    color: #c0392b; /* Başlık linklerinde kırmızı renk */
    text-decoration: none;
}

h2 a:hover {
    text-decoration: underline;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: white;
    color: #c0392b;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.text-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}



.image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
/* Styling for all links */
.text-content a {
    color: #c0392b; /* Başlık linklerinde kırmızı renk */
    text-decoration: none; /* Remove underline if you want */
}

/* Styling for active links */
.text-content a:active {
    color: #c0392b; /* Başlık linklerinde kırmızı renk */
}

/* Styling for visited links */
.text-content a:visited {
    color: #c0392b; /* Başlık linklerinde kırmızı renk */
}

.featured-image {
    max-width: 80%; /* Resimler biraz küçültüldü */
    height: auto;
    border-radius: 10px;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.landmark {
    flex: 1 1 calc(33.333% - 40px); /* 3'lü yan yana sıralama için genişlik ve aralık */
    box-sizing: border-box;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.landmark h2, .landmark p, .landmark img {
    margin: 0 0 10px;
}

.landmark h2 a {
    color: #c0392b;
    text-decoration: none;
}

.landmark h2 a:hover {
    text-decoration: underline;
}

.landmark img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.landmark-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer {
    background-color: #c0392b;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    flex-wrap: wrap;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white; /* Footer başlıklarının rengi beyaz */
}


.footer-column p, .footer-column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    margin: 5px 0;
}

.copyright {
    flex-basis: 100%;
    text-align: center;
    margin-top: 10px;
}
