/* Global styles */
* {
    font-family: 'Futura LT Home Medium', sans-serif;
}

/* Common service section styles */
.service-common {
    padding: 20px;
    margin: 0 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 100%;
}

/* Individual service section styles */
.risk-advisory, .consulting-services, .assurance-services {
    min-height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 0;
}

.risk-advisory, .consulting-services {
    background-color: #f0f0f0;
    padding-left: 169px;
    background-image: url('images-trs/trs-home/0.png');
}

.consulting-services {
    background-image: url('images-trs/trs-home/1.png');
}

.assurance-services {
    background-color: #ffffff;
    padding-right: 169px;
    background-image: url('images-trs/trs-home/2.png');
}

/* Service container styles */
.service-container {
    width: 40%;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #fff;
    border-radius: 5px;
    min-height: auto;
    max-height: none;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .service-container {
        width: 90%;
        margin: 10px auto;
    }
}

.service-common:nth-of-type(odd) .service-container {
    margin-right: auto;
    margin-left: 0;
}

.service-common:nth-of-type(even) .service-container {
    margin-left: auto;
    margin-right: 0;
}

/* Main header styles */
main h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 40px;
}

@media (max-width: 768px) {
    main h1 {
        font-size: 30px;
    }
}

/* Consulting container styles */
.consulting-container ul {
    text-align: left;
}

/* Navbar styles */
.navbar {
    background-color: rgba(65, 105, 225, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px;
    position: relative;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
    }
}

.nav-links a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
}

.nav-links a:hover {
    color: #e88d2b;
}

.logo img {
    width: 69px;
    height: auto;
    object-fit: contain;
    padding-left: 19px;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 29px;
}

/* Animation styles */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-section {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

/* Footer styles */
body .footer, .footer {
    font-size: 16px !important;
}
