/* Company Identity Styles */
.company-identity {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.company-logo-img {
    max-height: 120px;
}

.company-slogan-text {
    font-size: 1.2rem;
    color: #2c3e50;
}

.company-divider .divider {
    width: 100px;
    height: 3px;
    background: #2c3e50;
    margin: 20px auto;
}

.value-icon {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Contact Form Styles */
.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: block;
}

/* Countries Grid Styles */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.country-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.country-item:hover {
    transform: translateY(-5px);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 10px;
}

.country-name {
    font-weight: 600;
    color: #2c3e50;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info-body h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-body p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info-body a {
    color: #2c3e50;
    text-decoration: none;
}

.contact-info-body a:hover {
    color: #3498db;
}

