        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* Banner Styles */
        .banner {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .banner h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn-primary {
            background-color: var(--accent-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Brands Section */
        .brands-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .brands-section h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .brand-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px 0;
            filter: grayscale(100%);
            transition: all 0.3s;
        }
        
        .brand-logo:hover {
            filter: grayscale(0);
            transform: scale(1.05);
        }
        
        /* Articles Section */
        .articles-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .article-img {
            height: 200px;
            background-color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .article-content {
            padding: 20px;
        }
        
        .article-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .article-content p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .read-more {
            color: var(--secondary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
        }
        
        /* Requirements Section */
        .requirements-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .requirements-content h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .requirements-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .requirements-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .requirements-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        .application-form {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .application-form h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .form-control {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            padding: 12px;
            border-radius: 5px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .banner {
                padding: 60px 0;
            }
            
            .banner h1 {
                font-size: 2rem;
            }
            
            .brand-logo {
                height: 60px;
            }
        }
  

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0 40px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Form Section */
        .form-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            font-weight: 600;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            margin: 15px auto;
        }
        
        .application-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }
        
        .form-section-title {
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 8px;
        }
        
        .form-control {
            border: 1px solid #ddd;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }
        
        .form-check {
            margin-bottom: 10px;
        }
        
        .form-check-input {
            margin-right: 8px;
        }
        
        .file-upload {
            border: 2px dashed #ddd;
            border-radius: 5px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .file-upload:hover {
            border-color: var(--secondary-color);
            background-color: #f8f9fa;
        }
        
        .file-upload i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .file-input {
            display: none;
        }
        
        .file-name {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .btn-submit {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            display: block;
            margin: 40px auto 0;
            font-size: 1.1rem;
        }
        
        .btn-submit:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
        }
        
        /* Required field indicator */
        .required:after {
            content: " *";
            color: var(--accent-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 30px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .application-form {
                padding: 25px;
            }
        }


        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* Article Header */
        .article-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0 40px;
        }
        
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .article-meta .author {
            margin-right: 20px;
        }
        
        .article-meta .date {
            color: rgba(255,255,255,0.8);
        }
        
        /* Article Content */
        .article-content {
            background: white;
            padding: 50px 0;
        }
        
        .article-body {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .article-body h2 {
            color: var(--primary-color);
            margin: 40px 0 20px;
            font-weight: 600;
        }
        
        .article-body h3 {
            color: var(--secondary-color);
            margin: 30px 0 15px;
            font-weight: 500;
        }
        
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-body ul, .article-body ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .article-body li {
            margin-bottom: 10px;
        }
        
        .info-box {
            background-color: var(--light-color);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .warning-box {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .step-box {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            margin-right: 15px;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .comparison-table th, .comparison-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        .article-image {
            width: 100%;
            height: 300px;
            background-color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
            border-radius: 10px;
            color: var(--secondary-color);
            font-size: 3rem;
        }
        
        /* Related Articles */
        .related-articles {
            padding: 60px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .article-img {
            height: 200px;
            background-color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .article-card-content {
            padding: 20px;
        }
        
        .article-card-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .article-card-content p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .read-more {
            color: var(--secondary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .article-header {
                padding: 60px 0 30px;
            }
            
            .article-header h1 {
                font-size: 2rem;
            }
            
            .article-body {
                padding: 0 15px;
            }
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0 40px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            font-weight: 600;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            margin: 15px auto;
        }
        
        .category-title {
            color: var(--primary-color);
            margin: 60px 0 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-color);
            font-weight: 600;
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .pricing-table th, .pricing-table td {
            border: 1px solid #e0e0e0;
            padding: 15px;
            text-align: left;
        }
        
        .pricing-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            text-align: center;
        }
        
        .pricing-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .pricing-table tr:hover {
            background-color: #f0f8ff;
        }
        
        .price-cell {
            font-weight: 700;
            color: var(--accent-color);
            text-align: center;
        }
        
        .feature-name {
            font-weight: 500;
            width: 30%;
        }
        
        .package-highlight {
            background-color: rgba(52, 152, 219, 0.1) !important;
            position: relative;
        }
        
        .package-highlight th {
            position: relative;
        }
        
        .package-highlight th:after {
            content: 'POPÜLER';
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--accent-color);
            color: white;
            padding: 3px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .btn-pricing {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            text-align: center;
            width: 100%;
        }
        
        .btn-pricing:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Info Box */
        .info-box {
            background-color: var(--light-color);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        /* Additional Services */
        .additional-services {
            padding: 60px 0;
            background-color: var(--light-color);
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .service-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 30px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .pricing-table {
                font-size: 0.9rem;
            }
            
            .pricing-table th, .pricing-table td {
                padding: 10px 5px;
            }
        }
        
        @media (max-width: 576px) {
            .pricing-table {
                display: block;
                overflow-x: auto;
            }
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0 40px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            font-weight: 600;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            margin: 15px auto;
        }
        
        .contact-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s;
            border: 1px solid #f0f0f0;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .contact-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 600;
            text-align: center;
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .btn-contact {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
            display: block;
            text-decoration: none;
            margin-top: 15px;
            text-align: center;
            width: 100%;
        }
        
        .btn-contact:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-whatsapp {
            background-color: #25D366;
        }
        
        .btn-whatsapp:hover {
            background-color: #128C7E;
        }
        
        .btn-application {
            background-color: var(--accent-color);
        }
        
        .btn-application:hover {
            background-color: #c0392b;
        }
        
        /* Contact Form */
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }
        
        .contact-form h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 600;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            border: 1px solid #ddd;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Map Section */
        .map-section {
            padding: 60px 0;
            background-color: var(--light-color);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 400px;
        }
        
        .map-placeholder {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        .map-placeholder i {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        
        /* Company Info */
        .company-info {
            padding: 60px 0;
            background-color: white;
        }
        
        .info-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--secondary-color);
            height: 100%;
        }
        
        .info-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-card ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .info-card ul li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .info-card ul li:before {
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 30px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .contact-form {
                padding: 25px;
            }
            
            .contact-card {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-card h3 {
                font-size: 1.1rem;
            }
            
            .btn-contact {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0 40px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Products Section */
        .products-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            font-weight: 600;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            margin: 15px auto;
        }
        
        .category-title {
            color: var(--primary-color);
            margin: 60px 0 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-color);
            font-weight: 600;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
            border: 1px solid #f0f0f0;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .product-img {
            height: 200px;
            background-color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .product-img img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .product-content p {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .product-features {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        .product-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .product-features li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .price-period {
            font-size: 0.9rem;
            color: #666;
            font-weight: normal;
        }
        
        .btn-product {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .btn-product:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Package Comparison */
        .package-comparison {
            margin: 40px 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .comparison-table th, .comparison-table td {
            border: 1px solid #e0e0e0;
            padding: 15px;
            text-align: center;
        }
        
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .feature-name {
            text-align: left !important;
            font-weight: 500;
        }
        
        .package-highlight {
            background-color: rgba(52, 152, 219, 0.1) !important;
            position: relative;
        }
        
        .package-highlight:before {
            content: 'POPÜLER';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-color);
            color: white;
            padding: 3px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Info Box */
        .info-box {
            background-color: var(--light-color);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        /* Related Products */
        .related-products {
            padding: 60px 0;
            background-color: var(--light-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 30px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .comparison-table {
                font-size: 0.9rem;
            }
            
            .comparison-table th, .comparison-table td {
                padding: 10px 5px;
            }
        }
        
        @media (max-width: 576px) {
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* Article Header */
        .article-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0 40px;
        }
        
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .article-meta .author {
            margin-right: 20px;
        }
        
        .article-meta .date {
            color: rgba(255,255,255,0.8);
        }
        
        /* Article Content */
        .article-content {
            background: white;
            padding: 50px 0;
        }
        
        .article-body {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .article-body h2 {
            color: var(--primary-color);
            margin: 40px 0 20px;
            font-weight: 600;
        }
        
        .article-body h3 {
            color: var(--secondary-color);
            margin: 30px 0 15px;
            font-weight: 500;
        }
        
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-body ul, .article-body ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .article-body li {
            margin-bottom: 10px;
        }
        
        .info-box {
            background-color: var(--light-color);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .comparison-table th, .comparison-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        .article-image {
            width: 100%;
            height: 300px;
            background-color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
            border-radius: 10px;
            color: var(--secondary-color);
            font-size: 3rem;
        }
        
        /* Related Articles */
        .related-articles {
            padding: 60px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .article-img {
            height: 200px;
            background-color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .article-card-content {
            padding: 20px;
        }
        
        .article-card-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .article-card-content p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .read-more {
            color: var(--secondary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .article-header {
                padding: 60px 0 30px;
            }
            
            .article-header h1 {
                font-size: 2rem;
            }
            
            .article-body {
                padding: 0 15px;
            }
        }
--------------
        footer,
footer *:not(i) {
    color: white !important;
}

footer a:hover {
    color: #cccccc !important;
    text-decoration: underline;
}

footer a {
    text-decoration: none !important;
}

/* Hover durumunda da alt çizgi olmasın isterseniz */
footer a:hover {
    text-decoration: none !important;
}

        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #f8f9fa;
            --accent-color: #ff6b35;
            --text-color: #333;
            --light-text: #6c757d;
            --white: #fff;
            --border-color: #e9ecef;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f5f7fa;
        }

        /* Header & Navigation */
        header {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--white);
        }

        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-color);
            margin: 0 10px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }

        /* Blog Hero Section */
        .blog-hero {
            background: linear-gradient(135deg, var(--primary-color), #1a3a7a);
            color: var(--white);
            padding: 80px 0 60px;
            text-align: center;
        }

        .blog-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .blog-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }

        .search-box .input-group {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 30px;
            overflow: hidden;
        }

        .search-box input {
            border: none;
            padding: 15px 20px;
            font-size: 1rem;
        }

        .search-box button {
            background-color: var(--accent-color);
            border: none;
            color: white;
            padding: 0 25px;
            font-weight: 500;
        }

        /* Blog Content */
        .blog-content {
            padding: 60px 0;
        }

        .blog-posts {
            margin-bottom: 40px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .blog-img {
            height: 200px;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.05);
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-category {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .blog-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--light-text);
            margin-bottom: 20px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: var(--light-text);
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
        }

        .blog-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 10px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Tags Section */
        .tags-section {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }

        .tags-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .tag {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

        .tag:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Pagination */
        .pagination {
            justify-content: center;
            margin-top: 40px;
        }

        .page-link {
            color: var(--primary-color);
            border: 1px solid var(--border-color);
            padding: 10px 18px;
        }

        .page-link:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: #1a2b4e;
            padding: 60px 0 20px;
        }

        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .contact-info p {
            color: #b0b7c3;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 10px;
            margin-top: 5px;
            width: 16px;
        }

        .social-icons {
            display: flex;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background-color 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--accent-color);
        }

        .social-icons i {
            color: white;
            font-size: 1.2rem;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b7c3;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .blog-hero h1 {
                font-size: 2rem;
            }

            .blog-card h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .blog-hero {
                padding: 60px 0 40px;
            }

            .blog-content {
                padding: 40px 0;
            }
        }