* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn.accept {
    background: #ffd700;
    color: #000;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

/* Header */
.header {
    background: #000;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

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

.logo h1,
.logo a {
    color: #ffd700;
    text-decoration: unset;
    font-size: 24px;
    font-weight: bold;
}

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    color: white;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #ffd700;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* About Section */
.about {
    background: #ffd700;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #000;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Courses Section */
.courses {
    background: #333;
    padding: 80px 0;
    color: white;
}

.courses h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.courses-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.courses-description {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: #444;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.course-card h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.course-card p {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.course-btn {
    background: #ffd700;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.course-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Registration Section */
.registration {
    background: #000;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.registration h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.registration > .container > p {
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.registration-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: #333;
    color: white;
}

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

.form-group select {
    color: #999;
}

.form-group select option {
    background: #333;
    color: white;
}

.submit-btn {
    background: #ffd700;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #ffd700;
    padding: 40px 0;
    color: #000;
}

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

.footer-left {
    font-size: 14px;
}

.footer-center {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

.footer-right {
    text-align: right;
    font-size: 12px;
    display: flex;
    flex-direction: column;
}

.footer-right a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header {
      position: relative !important;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }

    .hero {
      height: 80vh;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .courses h2 {
        font-size: 24px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .registration h2 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .about-text h2 {
        font-size: 20px;
    }
    
    .courses h2 {
        font-size: 20px;
    }
    
    .registration h2 {
        font-size: 20px;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .course-card h3 {
        font-size: 18px;
    }
}

.policy {
  margin-top: 80px;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #fff;
}

@media (max-width:768px){
    
.policy {
  margin-top: 0;
}
}

.policy h1 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-content li {
  list-style-position: inside;
}

.policy-content a {
  text-decoration: unset;
  color: inherit;
}