
       
        .container2 {
          
            color: #333;
            line-height: 1.6;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .container2 a {
            text-decoration: none;
            color: #292929;
            transition: color 0.3s;
        }
        
        .container2 a:hover {
            color: #0d47a1;
        }
        
        .container2 img {
            max-width: 100%;
            height: auto;
        }
     
        
        .container2 {
            max-width: 1000px;
            margin: 0 auto;
            padding: 10px;
        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 5px 0;
            
        }
        
        .site-title {
            font-size: 2.2rem;
            color: #292929;
            text-align: center;
            margin-bottom: 10px;
        }
        
        /* Two Column Layout */
        .two-column-layout {
            display: flex;
            gap: 30px;
        }
        
        .left-column {
            flex: 7;
        }
        
        .right-column {
            flex: 3;
        }
        
        /* Newsletter Form */
        .newsletter-form {
           
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        
        .newsletter-form h2 {
            margin-bottom: 15px;
            color: #292929;
        }
        
        .newsletter-form input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            background-color: #292929;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
        }

        /* gutoz newsletter */
.subscription-form {
  margin: 32px auto;
  max-width: 600px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 5px 5px 5px 5px #d7d7da;
  border: 3px solid #000000;
  display: flex;
  flex-direction: column;
  color: #000000;
}

.subscription-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.subscription-form .form-label {
  font-size: 16px;
  margin-top: 8px;
  display: block;
  font-weight: 600;

}

.subscription-form .form-control {
  width: 100%;
  max-width: 350px;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 15px;
  margin-top: 8px;
  background-color: transparent;
  color: #000000;
}

.subscription-form .form-control::placeholder {
  color: #000000;
}

.subscription-form .form-control:focus {
  outline-color: #747db0;
}

.subscription-form .btn-submit {
  padding: 8px 16px;
  background-color: #181818;
  border: 2px solid #181818;
  border-radius: 15px;
  color: white;
  font-weight: bold;
  margin-top: 16px;
  align-self: flex-start;
  cursor: pointer;
}

.subscription-form .btn-submit:hover {
  opacity: 0.9;
}

 .message {
            padding: 12px;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        
        .message.success {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }
        
        .message.error {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }
        
        .hidden {
            display: none;
        }
        
        .search-results {
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            max-height: 200px;
            overflow-y: auto;
        }
        
        .search-item {
            padding: 10px 12px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .search-item:last-child {
            border-bottom: none;
        }
        
        .search-item:hover {
            background: #f8f9fa;
        }
        
        .search-item.selected {
            background: #e7f3ff;
        }
        
        .no-results {
            padding: 10px 12px;
            color: #6c757d;
            font-style: italic;
            background: #f8f9fa;
            border-radius: 4px;
        }
    .gutoznewsletter{
    text-align: center;
    font-size: 14px;
    }
    .newsetterdescription {
        font-size: 15px;
    }
        /* modified newsleter */
        
        .newsletter-form button:hover {
            background-color: #0d47a1;
        }
 .subscription-form .form-control {
    max-width: 100%;
}

.subscription-form {
    margin: 0px;

}
        
        /* Section Styles */

         h2.section-title{
              text-align: left;
               font-weight: 700;
                        }

        .section-title {
            font-size: 1.5rem;
            padding-bottom: 10px;
        
            color: #333;
             
            
        }
        
        /* Latest News Articles */
        .latest-news-article {
            margin-bottom: 30px;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .latest-news-article img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .latest-news-content {
            padding: 15px;
        }
        
        .latest-news-content h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .latest-news-meta {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* News List */
        .news-list {
            list-style: none;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .news-list-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .news-list-item:last-child {
            border-bottom: none;
        }
        
        .news-list-item h3 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .news-list-meta {
            color: #666;
            font-size: 0.8rem;
        }
        
        /* Data News Section */
          
        .featured-data-header h2 {
        color: #fff;
         }
           
         .data-news-header h2 {
        color: #fff;
         }

         .data-news-header:hover, .featured-data-header:hover
            {
                background: #e3e3e3;
            }


        .data-news-section {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
      


        .data-news-header {
            padding: 15px;
            background-color: #292929;
            color: white;
        }
        
        .data-news-list {
            list-style: none;
        }
        
        .data-news-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .data-news-item:last-child {
            border-bottom: none;
        }
        
        .data-news-item h3 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .data-news-meta {
            color: #666;
            font-size: 0.8rem;
        }
        
        /* Featured Data News */
        .featured-data-news {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .featured-data-header {
            padding: 15px;
            background-color: #292929;
            color: white;
        }
        
        .featured-data-list {
            list-style: none;
        }
        
        .featured-data-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .featured-data-item:last-child {
            border-bottom: none;
        }
        
        /* Loading State */
        .loading {
            text-align: center;
            padding: 20px;
            color: #666;
        }
        
        /* Error State */
        .error {
            background-color: #ffebee;
            color: #c62828;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        /* home hero sections */
          .herocontainer {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .design-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 24px;
            font-weight: 600;
        }
        
        .hero-section {
            margin-bottom: 40px;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        

        
        /* Design 2: Diagonal Split */
        .design-2 {
            display: grid;
            grid-template-columns: 1fr 2fr;
            min-height: 180px;
            background: white;
            position: relative;
        }
        
        .design-2-left {
            padding: 5px 25px;
            background: #000;
            color: white;
            display: flex;
            align-items: center;
            clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
        }
        
        .design-2-right {
            padding: 35px 40px 35px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
        }
        
        .design-2-left h1 {
            font-size: 26px;
            font-weight: 600;
            line-height: 1.2;
            color: #fff;
        }
        
        .design-2-right p {
            font-size: 14px;
            color: #444;
            line-height: 1.5;
        }
        
        .design-2-right button {
            background: #000;
            color: white;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            align-self: flex-start;
            transition: all 0.2s ease;
        }
        
        .design-2-right button:hover {
            background: #333;
        }

        .button-link {
    display: inline-block;
    background: #000;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    max-width: 200px;
    border-radius: 5px
}

.button-link:hover {
    background: #333;
}
        
        
        @media (max-width: 768px) {
            .design-1, .design-2, .design-3, .design-5, .design-6, .design-7 {
                grid-template-columns: 1fr;
            }
            
           
            .design-2-left {
                clip-path: none;
            }
            
            .design-1-left, .design-2-left, .design-6-right {
                padding: 25px 20px;
            }
            
            .design-1-right, .design-2-right, .design-3-right, 
            .design-5-right, .design-6-left, .design-7-right {
                padding: 25px 20px;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .two-column-layout {
                flex-direction: column;
            }
            
            .left-column, .right-column {
                flex: 1;
            }
        }
        
        @media (max-width: 600px) {
            .container2 {
                padding: 15px;
            }
            
            .site-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
        }
