/*
  ========================================
  Custom Styles for the Domain Registrars Page
  ========================================
*/

/* --- Hero Section --- */
.registrar-hero {
    background-color: #f8f9fa; /* A light, clean background */
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.registrar-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.registrar-hero .subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* --- General Info Section --- */
.info-section {
    padding: 70px 0;
}

.info-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #343a40;
}

.info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #0056b3;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.info-section a {
    color: #0d1b3e;
    text-decoration: none;
    font-weight: 500;
}

.info-section a:hover {
    text-decoration: underline;
}

/* --- Infographic --- */
.infographic-container {
    margin: 40px auto;
    text-align: center;
}

.infographic-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.infographic-container figcaption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* --- Alternating Background Color --- */
.alternate-bg {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

/* --- CTA Button --- */
.cta-button-v2 {
    display: inline-block;
    padding: 15px 35px;
    background-color: #28a745; /* Green color from your main page */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.cta-button-v2:hover {
    background-color: #218838;
    transform: translateY(-2px);
    color: #fff;
}

.text-center {
    text-align: center;
}


/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .registrar-hero h1 {
        font-size: 2.2rem;
    }
    .info-section h2 {
        font-size: 1.8rem;
    }
    .info-section {
        padding: 50px 0;
    }
}