.policy,
.success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__link {
  color: #000;
}

html {
  scroll-behavior: smooth;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
}

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

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-accept {
    background: #FF5722;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-configure {
    background: transparent;
    color: #FF5722;
    border: 2px solid #FF5722;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #FF5722;
    text-decoration: none;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #FF5722;
}

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

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

/* Hero Section */
.hero {
    background: #1a237e;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

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

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    background: #FF5722;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e64a19;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

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

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

.about h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 30px;
}

.about h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin: 40px 0 30px;
}

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

.benefits {
    margin-bottom: 40px;
}

.benefit-item {
    margin-bottom: 30px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 15px;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #1a237e;
    color: white;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: left;
    color: #333;
}

.service-image {
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.pricing h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
}

.pricing-card.featured {
    background: #1a237e;
    color: white;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a237e;
}

.pricing-card.featured h3 {
    color: white;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #666;
}

.pricing-card.featured li {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 30px;
}

.pricing-card.featured .price {
    color: white;
}

.btn-secondary {
    background: #FF5722;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #e64a19;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.process h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 60px;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto 60px;
}

.step {
    margin-bottom: 40px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.process-image {
    margin-top: 60px;
}

.process-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a237e;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-description {
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 5px;
}

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

.contact-images {
    display: flex;
    gap: 20px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

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

/* Footer */
.footer {
    background: white;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

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

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

.footer-bottom p {
    font-size: 12px;
    color: #999;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-images {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .about, .services, .pricing, .process, .contact {
        padding: 60px 0;
    }
    
    .services h2, .pricing h2, .process h2, .contact h2, .about h2 {
        font-size: 28px;
    }
    
    .contact-images {
        flex-direction: column;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .about-content {
        gap: 40px;
    }
}