/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #1a1a1a;
}

/* Offer Section */
.section-offer {
    min-height: 400px;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    background-color: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-offer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d32f2f, #f44336, #d32f2f);
}

.section-offer h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 2rem;
    background: linear-gradient(45deg, #d32f2f, #f44336);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

/* Form Section */
.section-form {
    background-color: #fff;
    padding: 4rem 0;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: #d32f2f;
    outline: none;
}

button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    background: #b71c1c;
}

/* Services Section */
.section-services {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 1.5rem;
    color: #d32f2f;
    font-weight: bold;
    margin-top: 1rem;
}

/* Article Styling */
.finance-article {
    background: #fff;
    padding: 3rem;
    margin: 4rem 0;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.finance-article h2 {
    color: #d32f2f;
    margin-bottom: 1.5rem;
}

.finance-article p {
    margin-bottom: 1rem;
}

/* Team Section */
.section-team {
    background-color: #fff;
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 10px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

/* Reviews Section */
.section-reviews {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.review-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.author {
    color: #f44336;
    margin-top: 1rem;
    font-style: italic;
}

/* Contacts Section */
.section-contacts {
    background-color: #fff;
    padding: 4rem 0;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .section-offer h1 {
        font-size: 2rem;
    }

    .container {
        width: 95%;
        padding: 1rem 0;
    }

    .services-grid,
    .team-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .finance-article {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    form {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-offer h1 {
        font-size: 1.5rem;
    }

    .service-item,
    .team-member,
    .review-item {
        padding: 1rem;
    }

    .price {
        font-size: 1.2rem;
    }
}
