body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #e0eafc, #cfdef3);
            color: #1a202c;
            line-height: 1.5;
        }

        .container {
            display: flex;
            max-width: 1500px;
            margin: 40px auto;
            gap: 30px;
            padding: 0 20px;
        }

        .main-content {
            flex: 3;
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .main-content:hover {
            transform: translateY(-5px);
        }

        .image-title {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px 20px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 15px;
        }

        .header-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 25px;
            border: 2px solid #e2e8f0;
        }

        .content h1 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 20px;
            text-transform: capitalize;
            text-align: left;
        }

        .content p {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 25px;
            line-height: 1.8;
        }

/* Download Button Base Styles */
.download-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.download-button:hover {
    transform: scale(1.02);
}

/* PDF Download Button */
#pdf {
    background-color: #e30613; /* PDF Red */
    color: #ffffff;
    border: 2px solid #b50510;
}

#pdf::before {
    content: '\f1c1'; /* Font Awesome PDF icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #ffffff;
}

#pdf::after {
    content: '.PDF';
    font-weight: 700;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ffffff;
}

/* Excel Download Button */
#xlsx {
    background-color: #1f7244; /* Excel Green */
    color: #ffffff;
    border: 2px solid #185c36;
}

#xlsx::before {
    content: '\f1c3'; /* Font Awesome Excel icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #ffffff;
}

#xlsx::after {
    content: '.XLSX';
    font-weight: 700;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ffffff;
}

/* Word Download Button */
#docx {
    background-color: #2b579a; /* Word Blue */
    color: #ffffff;
    border: 2px solid #20457c;
}

#docx::before {
    content: '\f1c2'; /* Font Awesome Word icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #ffffff;
}

#docx::after {
    content: '.DOCX';
    font-weight: 700;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ffffff;
}
/* Redirect Button Specific Styles */
#redirect-button {
    background-color: #007bff; /* Bootstrap Blue for redirect */
    color: #ffffff;
    border: 2px solid #0056b3; /* Darker blue border */
}

#redirect-button:hover {
    background-color: #0056b3;
    transform: scale(1.02);
}

#redirect-button::before {
    content: '\f061'; /* Font Awesome right arrow icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #ffffff;
}

#redirect-button::after {
    content: 'YÖNLENDİR';
    font-weight: 700;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ffffff;
}

/* Cover Download Button Specific Styles */
#cover {
    background-color: #4a4a4a; /* Neutral gray for cover */
    color: #ffffff;
    border: 2px solid #333333; /* Darker gray border */
}

#cover:hover {
    background-color: #333333;
    transform: scale(1.02);
}

#cover::before {
    content: '\f15b'; /* Font Awesome file icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #ffffff;
}

#cover::after {
    content: 'KAPAK';
    font-weight: 700;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ffffff;
}
        .right-container {
            flex: 1;
            background: #ffffff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            min-width: 300px;
        }

        .right-container h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 2px solid #667eea;
            padding-bottom: 10px;
        }

        .related-item {
            margin-bottom: 20px;
        }

        .related-item a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #2d3748;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .related-item a:hover {
            background: #edf2f7;
            transform: translateY(-3px);
        }

        .related-item img {
            width: 100%;
            max-width: 200px;
            height: auto;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
            border: 1px solid #e2e8f0;
        }

        .related-item span {
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                margin: 20px auto;
            }

            .main-content, .right-container {
                flex: 1;
            }

            .right-container {
                min-width: auto;
            }

            .related-item img {
                max-width: 150px;
            }
        }