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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.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: 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;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #e74c3c;
    color: white;
}

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

.btn-accept:hover {
    background: #c0392b;
}

.btn-decline:hover {
    background: white;
    color: #1a1a1a;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: unset;
}

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

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

.nav-menu a:hover {
    color: #e74c3c;
}

.cta-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 4px;
    align-items: center;
    text-decoration: unset;
}

.cta-button svg {
  margin-top: -4px;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    align-items: center;
    background: url(./assets/hero.png) no-repeat center;
    background-size: cover;
    color: white;
    position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(128, 128, 128, 0.9) 31.25%, rgba(0, 0, 0, 0) 100%);

}

.hero-pretitle {
  font-family: 'PT Sans';
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;

}
.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}

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

.btn-primary {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.3;
}

/* Quote Section */
.quote-section {
    background: rgba(128, 128, 128, 1);
    color: white;
    padding: 60px 0;
    position: relative;
}

.quote-section::before {
  content: url(./assets/rectangle.png);
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100vw;

}

@media (max-width:768px){
    .quote-section::before {
      content: '';
      height: 100%;
      width: 100%;
      background: url(./assets/rectangle.png) no-repeat center;
      background-size: cover;
    }
}

.quote-section blockquote {
    font-size: 1.4rem;
    font-style: italic;
    z-index: 3;
    position: relative;
    width: 80%;
}

.quote-section svg {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section-tag {
    color: #e74c3c;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.btn-outline {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #e74c3c;
    color: white;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: white;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-item {
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 300px;
}

.timeline-year {
    background: #e74c3c;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.blog-content h3 {
    margin: 15px 0;
    font-size: 1.3rem;
    color: #2c3e50;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c0392b;
}

/* CTA Section */
.cta-section {
    background: url(./assets/bg.png) no-repeat center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(128, 128, 128, 0.5);
}

.cta-section .container {
  z-index: 2;
  position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

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

.services-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.service-icon {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
    color: #333;
}

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

.contact-form {
    background: linear-gradient(135deg, #4a2c2a 0%, #2c1810 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.contact-info {
    padding: 20px 0;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header .section-tag {
    color: #e74c3c;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.contact-info-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.contact-info-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.form {
    margin-top: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.form input,
.form textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.form input::placeholder,
.form textarea::placeholder {
    color: #999;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1), 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form textarea {
    border-radius: 15px;
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-text h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-text p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}


/* Footer */
.footer {
    background: rgba(67, 8, 8, 1);
    color: white;
    padding: 40px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 30px;
    height: 30px;
}

.footer-brand-text {
    font-size: 1.2rem;
    font-weight: bold;
}

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

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
}

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

    .nav-menu.active {
      display: flex;
      padding: 20px;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .services-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .blog-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-form h2 {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-section h2 {
  font-family: 'PT Sans';
  font-weight: 700;
  font-size: 45px;
  line-height: 59px;
  color: rgba(119, 119, 119, 1);
  margin-bottom: 45px;
  word-break: break-word;
}

.services-section .container > span {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(119, 119, 119, 1);
  margin-bottom: 20px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
}

.policy-section {
  margin-top: 100px;
  margin-bottom: 60px;
  color: rgba(119, 119, 119, 1);
}

.policy-section h1 {
  font-weight: 700;
  font-size: 45px;
  line-height: 59px;
  margin-bottom: 20px;
  word-break: break-word;
}
