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

body {
    font-family: 'Puritan', sans-serif;
    line-height: 1.6;
    color: rgba(33, 5, 6, 1);
    background-color: #fdf2f2;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    margin: 20px;
    border: 3px solid rgba(15, 103, 103, 1);
}

.cookie-icon {
    margin-bottom: 20px;
}

.cookie-icon img {
    width: 60px;
    height: 60px;
}

.cookie-content h3 {
    margin-bottom: 20px;
    color: rgba(33, 5, 6, 1);
    font-size: 24px;
}

.cookie-content p {
    margin-bottom: 15px;
    color: rgba(123, 123, 123, 1);
    line-height: 1.6;
}

.cookie-buttons {
    margin-top: 30px;
}

.btn-accept {
    background-color: rgba(15, 103, 103, 1);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

.btn-reject {
    background: transparent;
    color: rgba(15, 103, 103, 1);
    border: 2px solid rgba(15, 103, 103, 1);
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: block;
    width: 100%;
}

.btn-accept:hover {
    background-color: rgba(15, 103, 103, 0.9);
}

.btn-reject:hover {
    background-color: rgba(15, 103, 103, 0.1);
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    background-color: #fdf2f2;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    text-decoration: unset;
    color: rgba(33, 5, 6, 1);
}

.logo img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: rgba(33, 5, 6, 1);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: rgba(15, 103, 103, 1);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fdf2f2 0%, #f0e6e6 100%);
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    color: rgba(33, 5, 6, 1);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: rgba(123, 123, 123, 1);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.btn-primary img {
    height: 60px;
}

.btn-register {
    background-color: rgba(15, 103, 103, 1);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-register:hover {
    background-color: rgba(15, 103, 103, 0.9);
}

.hero-image img {
    width: 100%;
    height: auto;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
 border-radius: 16px;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: white;
}

.about h2 {
    font-size: 36px;
    font-weight: bold;
    color: rgba(33, 5, 6, 1);
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    color: rgba(123, 123, 123, 1);
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    border: 3px solid rgba(15, 103, 103, 1);
}

.stat-item h3 {
    font-size: 28px;
    color: rgba(15, 103, 103, 1);
    margin-bottom: 15px;
    font-weight: bold;
}

.stat-item p {
    color: rgba(123, 123, 123, 1);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #fdf2f2;
}

.features h2 {
    font-size: 36px;
    font-weight: bold;
    color: rgba(33, 5, 6, 1);
    margin-bottom: 32px;
}

.features-grid {
  border: 3px solid rgba(15, 103, 103, 1);
  border-radius: 24px;
  padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    background-color: white;
    margin-bottom: 60px;
}

.feature-item {
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-item h3 {
    font-size: 24px;
    color: rgba(33, 5, 6, 1);
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-item p {
    color: rgba(123, 123, 123, 1);
    line-height: 1.6;
}


/* Reviews Section */
.reviews {
    padding: 60px 0;
    background-color: white;
}

.reviews h2 {
    font-size: 36px;
    font-weight: bold;
    color: rgba(33, 5, 6, 1);
    margin-bottom: 60px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    border: 2px solid rgba(15, 103, 103, 1);
}

.review-item.large {
    grid-column: span 2;
}

.review-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content h3 {
    color: rgba(33, 5, 6, 1);
    margin-bottom: 10px;
    font-weight: bold;
}

.review-content p {
    color: rgba(123, 123, 123, 1);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background-color: #fdf2f2;
}

.gallery h2 {
    font-size: 36px;
    font-weight: bold;
    color: rgba(33, 5, 6, 1);
    margin-bottom: 20px;
}

.gallery > .container > p {
    color: rgba(123, 123, 123, 1);
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(15, 103, 103, 1);
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 374px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: rgba(15, 103, 103, 1);
    color: white;
}

.contact h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact > .container > p {
    font-size: 18px;
    opacity: 0.9;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon {
    font-size: 24px;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: white;
    color: rgba(15, 103, 103, 1);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: rgba(33, 5, 6, 1);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    text-decoration: unset;
    color: inherit;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

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

.footer-nav a {
    text-decoration: none;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    opacity: 0.8;
    margin-top: 16px;
}

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

    .header .container {
      justify-content: center;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-item.large {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
}


.policy {
  margin-top: 70px;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}

.policy h1 {
  font-weight: 800;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (max-width:768px){
    .policy h1 {
      font-size: 36px;
    }
}

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

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

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