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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

/* Header Section */
header {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

header p {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
}

/* Main Content */
main {
    max-width: 800px;
    width: 100%;
    margin: 40px 0;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #000;
    margin-top: 5px;
}

/* Companies and Contact Section Styling */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

ul li strong {
    font-size: 1rem;
    color: #333;
}

ul li .btn {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #333;
    background-color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

ul li .btn:hover {
    background-color: #f5f5f5;
}

ul li .btn .icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Company Logos Styling */
.company-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-item .logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

footer p {
    font-size: 0.9rem;
    color: #666;
}

footer a {
    color: #007BFF;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    ul li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .company-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
}