/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 15px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

/* Header */
.header {
    background: rgba(49, 18, 2, 1);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff6b35;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    color: #fff;
    text-decoration: unset;
    font-weight: 600;
}

.cta-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #e55a2b;
}

.cta-btn.large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 80px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Guide Section */
.guide-section {
    background: #fff;
    padding: 80px 0;
}

.guide-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar Navigation */
.guide-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-nav {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 0;
    border: 1px solid #e9ecef;
}

.nav-item {
  display: flex;
    padding: 16px 24px;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #666;
    font-weight: 500;
    text-decoration: unset;
}

.nav-item:hover {
    background: rgba(255, 107, 53, 0.05);
    color: #333;
    border-left-color: #ff6b35;
}

.nav-item.active {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border-left-color: #ff6b35;
    font-weight: 600;
}

/* Main Content Area */
.guide-main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.question-content {


    transition: all 0.4s ease;
}

.question-content.active {

    transform: translateY(0);
}

.question-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
    line-height: 1.3;
}

.question-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;

}

.question-text p:not(:last-child) {
    margin-bottom: 20px;
}


.question-text ul,
.question-text ol {
    margin: 25px 0;
    padding-left: 0;

}

.question-text ul {
    list-style: none;
}

.question-text p + ul {
  margin-top: 16px;
  margin-bottom: 16px;
}

.question-text ol {
  list-style-position: inside;
}

.question-text li {
    padding: 6px 0 6px 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.question-text ul li::before {
    content: '•';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2em;
}

.question-text strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Books Section */
.books-section {
    padding: 80px 0;
    background: #fff;
}

.books-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.books-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.book-item {
    background: rgba(242, 242, 242, 1);
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;

    transition: transform 0.3s ease;
}

.book-item:hover {
    transform: translateY(-10px);
}

.book-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.book-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
}

.book-item p {
    color: rgba(51, 51, 51, 1);
    line-height: 1.2;
}

/* Registration Section */
.registration-section {
    background: rgba(49, 18, 2, 1);
    padding: 80px 0;
    color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.registration-form input {
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.registration-form input::placeholder {
    color: #999;
}

.submit-btn {
    background: rgba(232, 22, 26, 1);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: rgba(232, 22, 26, 0.7);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0;
    color: #ccc;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: center;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 24px;
    height: 24px;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.footer-social img:hover {
    filter: brightness(1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    


    
    .footer-content {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
      
    .guide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .guide-sidebar {
      position: relative;
      top: unset;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
      font-size: 50px;
    }

    .guide-text h2 {
        font-size: 2rem;
    }
    
    .books-section h2,
    .form-container h2 {
        font-size: 2rem;
    }
}

#id {
  scroll-margin-top: 80px;
}

@media (max-width:768px){
    #id {
  scroll-margin-top: 110px;
}
}

.info {
  background: #fff;
  color: #000;
  padding: 80px 0;
}