* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header Styles */
header {
    background-color: #003580;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* Main Content Styles */
.intro {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.highlight {
    background-color: #fffde7;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
    font-size: 1.1rem;
}

.phone-number {
    font-size: 1.3rem;
    color: #d32f2f;
    font-weight: bold;
    margin: 10px 0;
}

h2 {
    color: #003580;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

h3 {
    color: #0056b3;
    margin: 20px 0 10px;
}

ul, ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

.contact-method {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-method h3 {
    display: flex;
    align-items: center;
}

.contact-method h3 span {
    margin-right: 10px;
    font-size: 1.5rem;
}

.international-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.country-number {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 20px;
}

.search-terms {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.search-terms h3 {
    margin-top: 0;
}

.terms-list {
    columns: 2;
    column-gap: 30px;
}

/* Footer Styles */
footer {
    background-color: #003580;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .terms-list {
        columns: 1;
    }
    
    .international-numbers {
        grid-template-columns: 1fr;
    }
}