/* Main container styles */
.info-main {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #f4f4f4;
}

.info-container {
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 0 auto;
}

/* Header styles */
.info-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #438d9a;
}

.info-title {
    color: #438d9a;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.info-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 0.5rem;
}

.info-date {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Section styles */
.info-section {
    margin-bottom: 2.5rem;
}

.info-section-title {
    color: #438d9a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-text {
    color: #333;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 1.2rem;
}

.info-text p {
    margin-bottom: 1.2rem;
}

/* List styles */
.info-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.info-list li {
    margin-bottom: 0.8rem;
    position: relative;
    color: #333;  
    list-style: none;  
}


.info-list li::before {
    content: "•";
    color: #438d9a;  
    position: absolute;
    left: -1.2rem;
    font-size: 1.2rem;  
}

/* Contact section styles */
.info-contact {
    text-align: center;
    padding: 2rem;
    margin-top: 1rem;
    background: #f8f8f8;
    border-radius: 4px;
}

.info-contact .logo-small {
    width: 200px;
    height: auto;
    
}

.contact-detail {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

/* Footer contact link */
.footer-contact {
    font-size: inherit;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
}

.footer-contact:hover {
    color: #A4D4E4;
}

/* Responsive design */
@media (max-width: 768px) {
    .info-container {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 2rem;
    }

    .info-subtitle {
        font-size: 1.1rem;
    }

    .info-section-title {
        font-size: 1.3rem;
    }

    .info-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info-main {
        padding: 1rem 0.5rem;
    }

    .info-container {
        padding: 1rem;
    }

    .info-title {
        font-size: 1.8rem;
    }
}


.info-document-intro {
    margin-bottom: 2rem;
}

.info-document-intro p {
    color: #333;
    line-height: 1.6;  
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 1.2rem;  
}

.info-text .contact-email {
    color: #438d9a;
    font-size: inherit;  
    font-family: inherit;  
    display: inline;  
    white-space: nowrap;  
    text-decoration: underline;
    text-underline-offset: 2px;

}




/* How It Works specific styles */
.info-heading-with-bird {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.info-heading-with-bird .bird {
    width: 60px;  /* Slightly smaller bird */
    height: 60px;
    object-fit: contain;
}

.hiw-speech-bubble {
    background: white;
    border: 2px solid #438d9a;
    color: #438d9a;
    padding: 0.7rem 1rem;
    border-radius: 20px;  /* Increased border-radius for smoother corners */
    font-size: 1.1rem;
    margin-left: 1rem;
    position: relative;
    font-weight: 500;
}

.hiw-speech-bubble::before {
    content: '';
    position: absolute;
    left: -8px;  /* Adjusted position */
    top: 50%;
    transform: translateY(-50%) rotate(45deg);  /* Added rotate for diamond shape */
    width: 12px;
    height: 12px;
    background: white;
    border-left: 2px solid #438d9a;
    border-bottom: 2px solid #438d9a;
}

/* Remove the after pseudo-element since we don't need it anymore */
.hiw-speech-bubble::after {
    display: none;
}

/* Smaller numbered bullets */
.info-step-number {
    background: #438d9a;
    color: white;
    width: 24px;  /* Reduced from 32px */
    height: 24px;  /* Reduced from 32px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 0.9rem;  /* Smaller font size for numbers */
}

/* Rest of the styles remain the same */
.info-steps {
    margin-left: 2rem;
}

.info-step {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-step-content {
    flex-grow: 1;
}

.info-step-content p {
    margin: 0;
    line-height: 1.6;
}

/* Add spacing between sections */
.info-section {
    margin-bottom: 4rem;
}

/* Style for the Get Started button */
.info-cta {
    text-align: center;
    margin-top: 3rem;
}

.info-cta-button {
    display: inline-block;
    background-color: #438d9a;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.info-cta-button:hover {
    background-color: #7FCBDE;
}