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

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

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    z-index: 1000;
}

.nav-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    margin: 0 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero Section - New Design */
.hero-section {
    padding: 8rem 2rem 6rem;
    background-color: #ffffff;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: #f0f7ff;
    color: #007bff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.hero-content h1 .highlight {
    color: #007bff;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

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

.hero-cta {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.primary-btn {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    cursor: pointer;
    border: none;
}

.primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0062cc, #0056b3);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.primary-btn:hover::before {
    opacity: 1;
}

.primary-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0062cc, #0056b3);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.primary-cta:hover::before {
    opacity: 1;
}

.primary-cta svg {
    transition: transform 0.3s ease;
}

.primary-cta:hover svg {
    transform: translateX(3px);
}

.secondary-cta {
    color: #007bff;
    background: transparent;
    border: 2px solid #007bff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;ab
}
#privacy{
    width:90%;
    margin:auto;
    text-align:left;
}

.secondary-cta:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: white;
    padding: 12px;
}

.float-1 {
    top: 20%;
    left: 5%;
    animation: float 3s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.float-3 {
    bottom: 15%;
    left: 15%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top:75px;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .about-hero{
        display:flex;
        flex-direction:column-reverse;
        align-items:center;
        justify-content:center;
        padding:30px 15px;
    }
    .hero-features {
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 16rem;
    }
    .about-hero  .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }
 
}

@media (max-width: 768px) {
    .hero-section {
        padding: 7rem 1.5rem 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        margin: 0.5rem;
    }

    .service-card {
        width: 100%;
    }

    .faq-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .primary-btn, .primary-cta, .secondary-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Brands Section */
.brands {
    padding: 4rem 2rem;
    text-align: center;
    background: #fff;
}

.brands h2 {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logos img {
    height: 25px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brand-logos img:hover {
    opacity: 1;
}

/* Services Grid */
.services {
    padding: 4rem 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0 2rem;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 200px;
    height: 280px;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.service-card h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

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

/* About Section */
.about {
    padding: 6rem 2rem;
    background: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.about-text h3 {
    margin-bottom: 1rem;
}
.about-text h4 {
    color: #312f2f;
    margin-bottom: 1rem;
}
.about-text p {
    color: #666;
    margin-bottom: 1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

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

/* Experts Section */
  .team-section {
    padding: 60px 20px;
    background-color: #f9fafb;
    text-align: center;
  }
  .team-content{
      max-width:1200px;
      margin:auto;
  }
  .team-subtitle {
       font-size: 1.5rem;
    margin-top: 40px;
        margin-bottom: 40px;

  }
  .team-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1f2937;
  }

  .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .team-member {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
  }

  .team-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 10px 0 4px;
  }

  .team-role {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .team-desc {
    font-size: 0.90rem;
    color: #374151;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .team-photo {
      height: 200px;
    }
  }

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 2rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    margin-right: 1rem;
}

.faq-question {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-size: 0.95rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #666;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    margin-top: 0.5rem;
    display: none;
    color: #666;
    font-size: 0.9rem;
    padding-right: 1.5rem;
}

/* Mobile App Section */
.mobile-app {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #4158D0 0%, #C850C0 50%, #FFCC70 100%);
    color: white;
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.app-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.app-image img {
    width: 100%;
    max-width: 400px;
}

/* Contact Section - Updated */
.contact {
    padding: 5rem 2rem;
    background: #f9fbff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    position: relative;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.contact-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f7ff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.contact-form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:nth-child(3),
.form-group:nth-child(4) {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    grid-column: span 2;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    background: #007bff;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #0069d9;
    transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, #007bff, #00a1ff);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.25);
}

.cta-banner h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #007bff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer - Updated */
footer {
    background: #f9fbff;
    border-top: 1px solid #eaeaea;
    padding: 4rem 2rem 1.5rem;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f7ff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-social img {
    width: 18px;
    height: 18px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-newsletter input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.newsletter-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #0069d9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #888;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #007bff;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content,.experts-content{
        display:flex;
        flex-direction:column;
        justify-content:start;
        align-items:center;
    }
    .faq-container {

    grid-template-columns: repeat(1, 1fr);
 
}
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(3),
    .form-group:nth-child(4) {
        grid-column: span 1;
    }
    
    .contact-form button {
        grid-column: span 1;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        margin-bottom: 1rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Hosting Section */
.hosting-section {
    background: #ffffff;
    padding: 4rem 0;
    width: 100%;
}

/* Content Wrapper - Web Hosting */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
    gap: 4rem;
    position: relative;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
}

/* Hosting List */
.hosting-list {
    flex: 1;
    max-width: 1000px;
    margin: 2rem 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hosting-item {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.number {
    font-size: 5rem;
    font-weight: 700;
    color: #999;
    opacity: 0.3;
    line-height: 1;
    min-width: 100px;
}

.hosting-content {
    flex: 1;
}

.hosting-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hosting-title h2 {
    font-size: 2rem;
    color: #007bff;
    font-weight: 600;
}

.hosting-title .arrow {
    color: #007bff;
    font-size: 1.2rem;
}

.hosting-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hosting-image {
    width: 350px;
    height: 250px;
    background: #f0f0f0;
    border-radius: 10px;
}

.hosting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.hosting-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: none;
}

.checkmark {
    color: #28a745;
    font-size: 1rem;
}

.feature span:last-child {
    color: #666;
    font-weight: normal;
}

.description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Quick Links */
.quick-links {
    position: sticky;
    top: 100px;
    height: fit-content;
    width: 200px;
    flex-shrink: 0;
    margin-top: 2rem;
    padding: 1.5rem;
    align-self: flex-start;
    background: #fafafa;
    border-radius: 12px;
}

.quick-links h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 1rem;
}

.quick-links a {
    color: #007bff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #0056b3;
}

@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
    }

    .quick-links {
        position: static;
        width: 100%;
        margin-top: 2rem;
        order: -1;
    }

    .quick-links ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }

    .quick-links li {
        margin-bottom: 0;
    }

    .hosting-list {
        margin: 2rem 0;
    }

    .hosting-grid {
        grid-template-columns: 1fr;
    }

    .hosting-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .hosting-item {
        flex-direction: column;
    }

    .number {
        font-size: 4rem;
        min-width: auto;
    }

    .hosting-title h2 {
        font-size: 1.8rem;
    }
} 
#privacy{
 padding-top:12rem;
 padding-bottom:3rem;
 max-width:85%;
 margin:auto;
    
    
}