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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.renmar-header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.renmar-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.renmar-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #1E88E5;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.renmar-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 3px;
    background: #FF4081;
    transform: skewX(-20deg);
}

.renmar-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.renmar-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    padding: 5px 0;
}

.renmar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1E88E5;
    transition: width 0.3s ease;
}

.renmar-menu a:hover::after, .renmar-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.renmar-finance-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(30,136,229,0.95), rgba(76,175,80,0.95));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 8% 80px;
}

.renmar-finance-hero-content {
    width: 50%;
    color: white;
    position: relative;
    z-index: 2;
}

.renmar-finance-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFD700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.renmar-cta {
    display: inline-block;
    background: #FF4081;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,64,129,0.3);
}

.renmar-cta:hover {
    background: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,64,129,0.4);
}

.renmar-finance-hero-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.renmar-finance-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* App Screenshots Section */
.renmar-app-screenshots {
    padding: 80px 8%;
    background: #f8f9fa;
}

.renmar-app-screenshots h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.renmar-screenshot {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.renmar-screenshot:hover {
    transform: translateY(-5px);
}

.screenshot-placeholder {
    background: linear-gradient(45deg, #1E88E5, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}
.screenshot-placeholder img{
    width: 100%;
}
/* Finance Description Section */
.renmar-finance-description {
    padding: 80px 8%;
    background: white;
}

.renmar-finance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.renmar-finance-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.renmar-finance-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.renmar-finance-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Why Choose Section */
.renmar-why-choose {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.renmar-why-choose h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.renmar-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.renmar-why-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.renmar-why-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1E88E5;
}

.renmar-why-item p {
    color: #666;
    line-height: 1.6;
}

/* Loan Details Section */
.renmar-loan-details {
    padding: 80px 8%;
    background: white;
}

.renmar-loan-details h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.renmar-loan-details-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.renmar-loan-detail {
    background: linear-gradient(135deg, #1E88E5, #4CAF50);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(30,136,229,0.3);
}

.renmar-loan-detail h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.renmar-loan-detail p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Example Calculation Section */
.renmar-example-calculation {
    padding: 80px 8%;
    background: #f8f9fa;
}

.renmar-example-calculation h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.renmar-example-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.renmar-example-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.renmar-calculation-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.renmar-calculation-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.renmar-calculation-details ul {
    list-style: none;
}

.renmar-calculation-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
}

.renmar-calculation-details li:last-child {
    border-bottom: none;
}

/* How to Apply Section */
.renmar-how-to-apply {
    padding: 80px 8%;
    background: white;
}

.renmar-how-to-apply h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.renmar-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.renmar-step {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FF4081, #E91E63);
    color: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(255,64,129,0.3);
    transition: transform 0.3s ease;
}

.renmar-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.renmar-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.renmar-step p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Requirements Section */
.renmar-requirements {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.renmar-requirements h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.renmar-requirement {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.renmar-requirement:hover {
    transform: translateY(-5px);
}

.renmar-requirement h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1E88E5;
}

.renmar-requirement p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Info Section */
.renmar-contact-info {
    padding: 80px 8%;
    background: white;
}

.renmar-contact-info h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.renmar-contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.renmar-contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #1E88E5;
}

.renmar-contact-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.renmar-contact-item p {
    color: #666;
    font-size: 1rem;
}

.renmar-download-section {
    text-align: center;
    background: linear-gradient(135deg, #1E88E5, #4CAF50);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.renmar-download-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.renmar-download-btn {
    display: inline-block;
    background: #FF4081;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,64,129,0.3);
}

.renmar-download-btn:hover {
    background: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,64,129,0.4);
}

/* Footer */
.renmar-footer {
    background: #333;
    color: white;
    padding: 3rem 8%;
}

.renmar-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.renmar-footer-info h4,
.renmar-footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1E88E5;
}

.renmar-footer-info p,
.renmar-footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .renmar-finance-hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 60px;
    }
    
    .renmar-finance-hero-content,
    .renmar-finance-hero-image {
        width: 100%;
    }
    
    .renmar-finance-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .renmar-finance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .renmar-menu {
        gap: 1.5rem;
    }
    
    .renmar-menu a {
        font-size: 12px;
    }
    
    .renmar-screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .renmar-why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .renmar-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .renmar-finance-hero-content h1 {
        font-size: 2rem;
    }
    
    .renmar-screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .renmar-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .renmar-nav {
        padding: 1rem;
    }
    
    .renmar-menu {
        gap: 1rem;
    }
    
    .renmar-menu a {
        font-size: 11px;
    }
}
