body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Стили для шапки */
.top-bar {
    background-color: #1a2526;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}
.top-bar a:hover {
    color: #4caf50;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header-logo img {
    height: 45px;
    transition: transform 0.3s ease;
}
.header-logo img:hover {
    transform: scale(1.05);
}
.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.header-nav ul li {
    margin-left: 25px;
}
.header-nav ul li a {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.header-nav ul li a:hover {
    color: #4caf50;
}
.header-nav ul li .login-btn {
    background-color: #4caf50;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.header-nav ul li .login-btn:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}

/* Основной контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://brl-auto.com/poznan/sam_1.jpg') no-repeat center center/cover;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 40px;
    margin-bottom: 80px;
}
.hero-text {
    max-width: 55%;
    color: #ffffff;
}
.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #4caf50;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 17px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.hero-button:hover {
    background-color: #4caf50;
    color: #ffffff;
    transform: translateY(-2px);
}
.intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 80px;
    color: #333333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cta-button {
    display: block;
    width: 220px;
    margin: 30px auto;
    padding: 15px;
    background-color: #ffffff;
    color: #4caf50;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border: 2px solid #4caf50;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
    background-color: #4caf50;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Driver Section */
.driver-section {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 30px;
}
.driver-image {
    flex: 0 0 40%;
    text-align: center;
}
.driver-image img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.driver-content {
    flex: 1;
    padding-left: 40px;
}
.driver-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #333333;
    margin-bottom: 20px;
}
.driver-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 25px;
}
.driver-content .phone-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #4caf50;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}
.driver-content .phone-number:hover {
    color: #388e3c;
}
.driver-content .cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #4caf50;
    margin-left: 10px;
}

/* Requirements Section */
.requirements-section {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 80px;
}
.requirements-content {
    flex: 1;
    padding-right: 40px;
}
.requirements-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #333333;
    margin-bottom: 25px;
}
.requirements-content ul {
    list-style: none;
    padding: 0;
}
.requirements-content ul li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.requirements-content ul li i {
    color: #4caf50;
    margin-right: 12px;
    font-size: 22px;
}
.requirements-image {
    flex: 0 0 40%;
    text-align: center;
}
.requirements-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Cost Section */
.cost-section {
    margin-bottom: 80px;
}
.cost-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}
.cost-plans {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.cost-plan {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cost-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.cost-plan.standard {
    background-color: #e8f5e9;
    border: 2px solid #4caf50;
}
.cost-plan h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #1e88e5;
    margin-bottom: 20px;
}
.cost-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}
.cost-plan ul li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #333333;
}
.cost-plan ul li i {
    color: #4caf50;
    margin-right: 12px;
    font-size: 22px;
}
.cost-plan .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #333333;
    margin-bottom: 15px;
}
.cost-plan .vat {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}
.cost-plan p {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
}
.cost-plan .plan-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4caf50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.cost-plan .plan-button:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}

/* Why Section */
.why-section {
    margin-bottom: 80px;
}
.why-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.why-item {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.why-item:hover {
    transform: translateY(-5px);
}
.why-item .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ffffff;
}
.why-item .icon i {
    color: #ffffff;
}
.why-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
}
.why-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}
.why-item:nth-child(1) .icon { background-color: #42a5f5; }
.why-item:nth-child(2) .icon { background-color: #66bb6a; }
.why-item:nth-child(3) .icon { background-color: #ab47bc; }
.why-item:nth-child(4) .icon { background-color: #ef5350; }
.why-item:nth-child(5) .icon { background-color: #ffca28; }
.why-item:nth-child(6) .icon { background-color: #f06292; }

/* Rental Section */
.rental-section {
    margin-bottom: 80px;
}
.rental-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}
.car-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.car-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.car-item img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.car-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #333333;
    margin-bottom: 15px;
}
.car-item .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #4caf50;
    margin-bottom: 15px;
}
.car-item p {
    font-size: 14px;
    color: #666666;
    margin: 8px 0;
}
.rental-section .additional-info {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-top: 25px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
}
.faq-section details {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-section details[open] {
    border-color: #4caf50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.faq-section summary {
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333333;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-section summary:hover {
    background-color: #e8f5e9;
}
.faq-section summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4caf50;
    transition: transform 0.3s ease;
}
.faq-section details[open] summary::after {
    transform: rotate(180deg);
}
.faq-section p, .faq-section ul {
    padding: 20px;
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    margin: 0;
    background-color: #ffffff;
}
.faq-section ul {
    list-style: none;
    padding-left: 20px;
}
.faq-section ul li {
    position: relative;
    margin-bottom: 10px;
}
.faq-section ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4caf50;
    position: absolute;
    left: -20px;
    top: 2px;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #e0e0e0;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-left {
    flex: 1;
}
.footer-left .cities {
    margin-bottom: 25px;
}
.footer-left .cities a {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 12px;
    margin-bottom: 12px;
    background-color: #e0e0e0;
    color: #333333;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-left .cities a.active {
    background-color: #4caf50;
    color: #ffffff;
}
.footer-left .cities a:hover {
    background-color: #4caf50;
    color: #ffffff;
}
.footer-left .contact-info {
    margin-bottom: 25px;
}
.footer-left .contact-info p {
    font-size: 16px;
    margin: 8px 0;
}
.footer-left .contact-info a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-left .contact-info a:hover {
    color: #388e3c;
}
.footer-left .links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-left .links a {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-left .links a:hover {
    color: #4caf50;
}
.footer-right {
    flex: 1;
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.footer-right h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #333333;
    margin-bottom: 25px;
}
.footer-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-right form input {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.footer-right form input:focus {
    border-color: #4caf50;
    outline: none;
}
.footer-right form .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-right form .checkbox input {
    width: auto;
}
.footer-right form .checkbox label {
    font-size: 14px;
    color: #666666;
}
.footer-right form button {
    padding: 12px;
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.footer-right form button:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}
.footer-bottom {
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    color: #666666;
    border-top: 1px solid #e0e0e0;
    background-color: #ffffff;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }
    .top-bar a {
        margin-left: 0;
        margin-top: 8px;
    }
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }
    .header-logo img {
        height: 40px;
    }
    .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
    }
    .header-nav ul li {
        margin-left: 0;
        margin-bottom: 12px;
    }
    .container {
        padding: 0 15px;
    }
    .hero-section {
        height: 400px;
        padding: 25px;
        border-radius: 0;
        flex-direction: column;
        justify-content: center;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .hero-button {
        padding: 12px 30px;
        font-size: 15px;
    }
    .intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .cta-button {
        width: 200px;
        padding: 12px;
        font-size: 15px;
    }
    .driver-section {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    .driver-image {
        flex: none;
        margin-bottom: 25px;
    }
    .driver-image img {
        width: 220px;
        height: 220px;
    }
    .driver-content {
        padding-left: 0;
    }
    .driver-content h2 {
        font-size: 30px;
    }
    .driver-content p {
        font-size: 14px;
    }
    .driver-content .phone-number {
        font-size: 18px;
    }
    .driver-content .cta-text {
        font-size: 16px;
    }
    .requirements-section {
        flex-direction: column;
        padding: 25px;
        margin-bottom: 40px;
    }
    .requirements-content {
        padding-right: 0;
        margin-bottom: 25px;
    }
    .requirements-content h2 {
        font-size: 30px;
        text-align: center;
    }
    .requirements-content ul li {
        font-size: 14px;
        padding: 10px;
    }
    .requirements-image {
        flex: none;
    }
    .requirements-image img {
        max-width: 300px;
    }
    .cost-plans {
        flex-direction: column;
        gap: 20px;
    }
    .cost-plan {
        padding: 20px;
    }
    .cost-plan.standard {
        transform: none;
    }
    .cost-plan h3 {
        font-size: 22px;
    }
    .cost-plan ul li {
        font-size: 14px;
    }
    .cost-plan .price {
        font-size: 26px;
    }
    .cost-plan .vat {
        font-size: 13px;
    }
    .cost-plan p {
        font-size: 13px;
    }
    .cost-plan .plan-button {
        padding: 10px 20px;
        font-size: 15px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-item {
        padding: 15px;
    }
    .why-item .icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    .why-item h3 {
        font-size: 18px;
    }
    .why-item p {
        font-size: 13px;
    }
    .car-grid {
        flex-direction: column;
        gap: 20px;
    }
    .car-item {
        padding: 20px;
    }
    .car-item img {
        max-width: 280px;
    }
    .car-item h3 {
        font-size: 22px;
    }
    .car-item .price {
        font-size: 20px;
    }
    .car-item p {
        font-size: 13px;
    }
    .rental-section .additional-info {
        font-size: 14px;
    }
    .faq-section {
        padding: 25px 15px;
        margin-bottom: 40px;
    }
    .faq-section h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .faq-section details {
        margin-bottom: 12px;
    }
    .faq-section summary {
        font-size: 16px;
        padding: 15px;
    }
    .faq-section p, .faq-section ul {
        font-size: 14px;
        padding: 15px;
    }
    .footer {
        flex-direction: column;
        gap: 25px;
        padding: 30px 15px;
    }
    .footer-left .cities a {
        font-size: 13px;
        padding: 6px 12px;
    }
    .footer-left .contact-info p {
        font-size: 14px;
    }
    .footer-left .links a {
        font-size: 13px;
    }
    .footer-right {
        padding: 20px;
    }
    .footer-right h3 {
        font-size: 22px;
    }
    .footer-right form input {
        font-size: 13px;
        padding: 10px;
    }
    .footer-right form .checkbox label {
        font-size: 13px;
    }
    .footer-right form button {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 10px;
    }
    .header-logo img {
        height: 35px;
    }
    .header-nav ul li a {
        font-size: 14px;
    }
    .hero-section {
        height: 350px;
        padding: 20px;
    }
    .hero-text h1 {
        font-size: 30px;
    }
    .hero-text p {
        font-size: 14px;
    }
    .hero-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    .intro {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .cta-button {
        width: 180px;
        padding: 10px;
        font-size: 14px;
    }
    .driver-section {
        margin-bottom: 30px;
    }
    .driver-image img {
        width: 180px;
        height: 180px;
    }
    .driver-content h2 {
        font-size: 26px;
    }
    .driver-content p {
        font-size: 13px;
    }
    .driver-content .phone-number {
        font-size: 18px;
    }
    .driver-content .cta-text {
        font-size: 14px;
    }
    .requirements-section {
        padding: 20px;
    }
    .requirements-content h2 {
        font-size: 26px;
    }
    .requirements-content ul li {
        font-size: 13px;
    }
    .requirements-image img {
        max-width: 250px;
    }
    .cost-section h2 {
        font-size: 30px;
    }
    .cost-plan h3 {
        font-size: 20px;
    }
    .cost-plan ul li {
        font-size: 13px;
    }
    .cost-plan .price {
        font-size: 24px;
    }
    .cost-plan .vat {
        font-size: 12px;
    }
    .cost-plan p {
        font-size: 12px;
    }
    .cost-plan .plan-button {
        padding: 8px 15px;
        font-size: 14px;
    }
    .why-item .icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .faq-section h2 {
        font-size: 26px;
    }
    .faq-section summary {
        font-size: 15px;
        padding: 12px;
    }
    .faq-section p, .faq-section ul {
        font-size: 13px;
        padding: 12px;
    }
}