/* Basic Reset */
body, h1, p, a, img {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header Styling */
.header {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Container for logo, navigation and button */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styling */
.logo h1 {
    font-size: 36px;
    margin: 0;
}

/* Navigation Links */
.nav-links {
    display: flex;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Call-to-Action Button */
.cta-button .btn {
    background-color: #FF5733; /* Orange button */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.cta-button .btn:hover {
    background-color: #c84e2f; /* Darker orange on hover */
}

/* Big Image Section */
.big-image {
    text-align: center;
   
}

.big-image .image {
    width: 100%;  /* Make the image take full width */
    height: 1000px;  /* Maintain aspect ratio */
}

/* Footer Styling */
.footer {
    background-color: #333; /* Dark background */
    color: white;
    text-align: center
    
}
.footer_text{
    padding-top: 20px;
    padding-bottom: 20px;
}
