.car-title{
    font-size: 40px;
    font-weight: bold;
    color: #262262;
    font-family: system-ui;
}
.career{
    height: fit-content;
    padding: 60px;
}
.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}
.car-header {
    text-align: center;
    padding: 50px 0;
}

.section {
    margin-bottom: 50px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    color: #262262;
}
.section img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.section:hover img {
    transform: scale(1.05);
}
.content {
    padding: 20px;
}
.content h2 {
    color: #262262;
    font-size: 2em;
}
.content ul {
    list-style: none;
    padding: 0;
}
.content ul li {
    margin: 10px 0;
    font-size: 1.2em;
}
.content ul li:before {
    content: '•';
    color: #262262;
    font-size: 1.5em;
    margin-right: 10px;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 2s forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.section .car-img,
.section .car-img img{
    width: 400px;
    height: 400px;
}
.c-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.c-col-img{
    width: 40%;
}
.c-col-des{
    width: 60%;
}
.car-block{
    margin-top: 10px;

}
@media(max-width:480px){
    .car-title{
        font-size: 30px;
    }
    .career{
        padding: 0px;
    }
    .container {
        width: 100%;
        padding: 0px;
    }
    .section .car-img,
.section .car-img img{
    width: 100%;
    height: fit-content;
}
.c-row{
    flex-direction: column;
}
.c-col-img{
    width: 100%;
}
.c-col-des{
    width: 100%;
    margin-top: 20px;
}
}