
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    
    color: #f4f4f4;
    
}

.container {
    width: 80%;
    margin: 0 auto;

}


header {
    background-color: #222;
    
    color: white;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 36px;
}

header nav ul {
    list-style: none;
    text-align: center;
    margin-top: 10px;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: #f4f4f4;
    
    text-decoration: none;
    font-size: 18px;
}

header nav ul li a:hover {
    color: #3498db;
    
}


.hero {
    background-color: #333;
    
    color: #f4f4f4;
    
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 10px;
}

.hero .btn {
    background-color: #1b5d8a;
    
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.hero .btn:hover {
    background-color: #1b5d8a;
    
}


.how-it-works {
    background-color: #2c2c2c; 
    padding: 20px 20px; 
    text-align: center;
    color: #f4f4f4; 
}

.how-it-works h2 {
    font-size: 36px; 
    font-weight: bold; 
    margin-bottom: 20px;
    color: #f4f4f4; 
}

.how-it-works p {
    font-size: 20px; 
    margin-bottom: 30px; 
    color: #ddd; 
    line-height: 1.6; 
}

.how-it-works ul {
    list-style: none;
    text-align: left;
    display: inline-block; 
    margin-top: 10px;
    max-width: 700px; 
}

.how-it-works ul li {
    margin-bottom: 25px; 
    font-size: 18px;
    color: #ddd; 
    line-height: 1.5; 
    padding-left: 0; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 5px; 
}

.how-it-works ul li strong {
    color: #3498db; 
    font-weight: bold; 
    font-size: 20px; 
}

.how-it-works ul li span {
    color: #ccc; 
    font-size: 16px; 
    line-height: 1.6; 
}





.pricing-section {
    background-color: #222; 
    color: #f4f4f4; 
    padding: 50px 0;
    text-align: center;
    
}

.pricing-section h2 {
    font-size: 36px; 
    font-weight: bold; 
    margin-bottom: 20px;
    color: #f4f4f4; 
    
}


.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    
}

.pricing-card {
    background-color: #333;
    
    padding: 30px;  
    min-width: 30%;
    max-width: 80%;
    border-radius: 10px;
    text-align: center;
}

.pricing-card h3 {
    font-size: 28px;
    color: #3498db;
    
    margin-bottom: 20px;
}

.pricing-card p {
    font-size: 18px;
    color: #ccc;
    
    margin-bottom: 5px;
}

.pricing-card .price {
    font-size: 32px;
    color: #fff;
    
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-card .price del {
    font-size: 24px;
    color: #e74c3c; 
    text-decoration: line-through;
}

.pricing-card .discounted-price {
    font-size: 32px;
    font-weight: bold;
}

.pricing-card .limited-time-message {
    font-size: 18px;
    color: #e67e22; 
    font-weight: bold;
    margin-bottom: 0px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #2980b9;
    
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    max-width: 500px;
}

.cta-button:hover {
    background-color: #1b5d8a;
    
}



  /* Button Styles */
  .popup-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
  }

  .popup-button:hover {
    background-color: #2980b9;
  }

  /* Overlay Background */
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
  }

  /* Popup Container */
  .popup-container {
    background-color: #2c2c2c;
    padding: 50px 50px;
    text-align: center;
    color: #f4f4f4;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 400px;
  }

  .popup-container h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f4f4f4;
  }

  .popup-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.6;
  }

  /* Close Button */
  .popup-close {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
  }

  .popup-close:hover {
    background-color: #c0392b;
  }

footer {
    background-color: #222;
    
    color: #f4f4f4;
    
    padding: 20px 0;
    text-align: center;
}

.list-container {
    display: flex;
    justify-content: center;
}

.centered-list {
    text-align: left;
    list-style-position: inside;
}


.request-form-container {
    width: 80%;
    margin: 0 auto;
}

.request-form {
    background: #222;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.request-form input, .request-form button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.request-form input {
    border: 1px solid #3498db;
    background-color: #333;
    color: #f4f4f4;
}

.request-form button {
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.request-form button:hover {
    background: #218838;
}

.request-form #response-message {
    margin-top: 10px;
    font-size: 16px;
}


.thumbnail-container {
    display: flex;
    gap: 30px; 
    justify-content: center; 
    align-items: center; 
}

.thumbnail {
    /* width: 200px;
    height: 200px; */
    max-width: 50%;
    max-height: 50%;
    cursor: pointer;
    border-radius: 10px; 
}

.preview-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    justify-content: center;
    align-items: center;
    z-index: 1000; 
}


#preview-image {
    max-width: 80%;
    max-height: 80%;
}

#close-preview {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: white;
    border: none;
    cursor: pointer;
}