* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    background-color: #ffffff;
    line-height: 1.5;
}

/* Стил за хедъра */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Лого дизайн */
.logo {
    font-family: sans-serif;
}

.trademark {
    font-size: 12px;
    color: #004b87;
    vertical-align: super;
}

.subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #004b87; /* Син цвят за Graduate School */
    margin-top: -4px;
}

.tagline {
    font-size: 9px;
    font-weight: bold;
    color: #e65c00;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Бутон за контакт */
.contact-btn {
    background-color: #ff6600;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.contact-btn:hover {
    background-color: #e65c00;
}

/* Банер с изображение */
.hero-section {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Текстово съдържание */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -0.5px;
}

.description {
    font-size: 14px;
    line-height: 1.7;
    color: #111111;
    text-align: justify;
    text-align-last: center; /* Центрира последния ред за по-изчистен вид */
}

.description strong {
    font-weight: 700;
}

/* Адаптивност за мобилни устройства */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .description {
        font-size: 13px;
    }
}

/* Секция за книгата */
.book-info-section {
    background-color: #f5f5f5; /* Светлосив фон, съответстващ на скрийншота */
    padding: 60px 20px;
    width: 100%;
}

.book-container {
    max-width: 900px; /* Подравнено спрямо ширината на горния текст */
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Корица */
.book-cover-wrapper {
    flex: 0 0 240px; /* Фиксирана ширина за корицата */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Деликатна сянка */
}

.book-cover {
    width: 100%;
    height: auto;
    display: block;
}

/* Текстови детайли */
.book-details {
    flex: 1;
}

.book-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

/* Списък с метаданни */
.metadata-list {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Разстояние между редовете */
}

.metadata-item {
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
}

.metadata-item .label {
    font-weight: 400; /* В оригиналния текст етикетите не са по-дебели от стойностите */
}

/* Адаптивност за мобилни устройства */
@media (max-width: 768px) {
    .book-container {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 30px;
    }
    
    .book-cover-wrapper {
        flex: 0 0 200px;
        max-width: 200px;
    }
    
    .book-title {
        font-size: 18px;
    }
}

/* Секция за статиите */
.articles-section {
    background-color: #ffffff; /* Бял фон за цялата секция */
    padding: 60px 20px;
    width: 100%;
}

.articles-container {
    max-width: 900px; /* Запазваме същата ширина за консистентност */
    margin: 0 auto;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

/* Списък и карти */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Разстояние между картите */
}

.article-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea; /* Тънка рамка */
    padding: 24px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02); /* Мек 3D ефект */
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Ефект при посочване (по избор, за по-добро потребителско изживяване) */
.article-card:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.article-heading {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.article-authors {
    font-size: 13px;
    color: #555555;
    font-weight: 400;
}

/* Адаптивност */
@media (max-width: 768px) {
    .article-card {
        padding: 16px 20px;
    }
    
    .article-heading {
        font-size: 14px;
    }
}

/* Секция за покупка */
.purchase-section {
    background-color: #f5f5f5; /* Светлосив фон, еднакъв с втората секция */
    padding: 60px 20px;
    width: 100%;
}

.purchase-container {
    max-width: 900px; /* Консистентна ширина с останалите секции */
    margin: 0 auto;
    text-align: center;
}

.purchase-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.purchase-text {
    font-size: 14px;
    line-height: 1.6;
    color: #111111;
    max-width: 750px; /* Леко стесняване за по-добро пречупване на текста */
    margin: 0 auto 30px auto;
}

.purchase-action {
    display: flex;
    justify-content: center;
}

/* Оранжев бутон за покупка */
.purchase-btn {
    background-color: #ff6600; /* Оригинален оранжев цвят */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 2px; /* По-остър ръб спрямо хедъра, съвпадащ със скрийншота */
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.purchase-btn:hover {
    background-color: #e65c00;
}

/* Адаптивност */
@media (max-width: 768px) {
    .purchase-section {
        padding: 40px 20px;
    }
    
    .purchase-title {
        font-size: 19px;
        margin-bottom: 16px;
    }
    
    .purchase-text {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Стил за футъра */
.footer {
    background-color: #f1f7fc; /* Много светлосин фон, точно като на снимката */
    padding: 24px 40px;
    width: 100%;
    border-top: 1px solid #e2edf5;
}

.footer-container {
    max-width: 1200px; /* Подравнен спрямо ширината на хедъра */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Разделя на 3 равни колони за перфектно центриране */
    align-items: center;
}

/* Копирайт текст */
.footer-copyright {
    font-size: 11px;
    color: #555555;
    font-weight: bold;
    white-space: nowrap;
}

/* Социални икони - центрирани */
.footer-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    transition: opacity 0.2s ease;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: #000000; /* Черен цвят за иконите */
}

.social-icon:hover {
    opacity: 0.7;
}

/* Линк Imprint - вдясно */
.footer-links {
    text-align: right;
}

.imprint-link {
    font-size: 11px;
    color: #555555;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}

.imprint-link:hover {
    color: #000000;
    text-decoration: underline;
}

/* Адаптивност за мобилни устройства */
@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-links {
        text-align: center;
    }
}