/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8em;
    line-height: 1.2;
}

h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.6em;
    color: #34495e;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    font-size: 1.1em;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c3e50;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 1.1em;
    font-weight: 500;
    color: #34495e;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
    border: 2px solid #27ae60;
}

.btn-primary:hover {
    background-color: #229954;
    border-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    margin-top: 0;
    color: #3498db;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #f4f7f6;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    max-width: 700px;
}

.about-text p {
    font-size: 1.15em;
    margin-bottom: 20px;
}

/* Call to Action Banner */
.cta-banner {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-banner p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .btn-primary {
    background-color: #ffffff;
    color: #2c3e50;
    border-color: #ffffff;
}

.cta-banner .btn-primary:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.contact-info h3 {
    color: #3498db;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.contact-info a {
    font-weight: bold;
}

.contact-form {
    flex: 1;
    max-width: 600px;
    background-color: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #34495e;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background-color: #3498db;
    color: #ffffff;
    border-color: #3498db;
    width: auto;
    padding: 15px 40px;
}

.contact-form .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: #ecf0f1;
    font-weight: 500;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 0.95em;
}

.footer-contact a {
    color: #ecf0f1;
    font-weight: bold;
}

.footer-contact a:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 992px) {
    nav ul li {
        margin-left: 20px;
    }
    .hero h1 {
        font-size: 3em;
    }
    .hero p {
        font-size: 1.2em;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .about-content, .contact-form-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .about-text, .contact-info, .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 10px 20px;
    }
    nav .logo {
        margin-bottom: 10px;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    nav ul li {
        margin: 10px 0;
    }
    .hero {
        padding: 80px 20px;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        width: 80%;
        margin: 0 auto;
    }
    .services-section, .about-section, .contact-section {
        padding: 60px 20px;
    }
    .section-header h2 {
        font-size: 1.8em;
    }
    .contact-form-wrapper {
        gap: 20px;
    }
    .contact-form {
        padding: 30px;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-links ul {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .footer-links li {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    .hero h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.6em;
    }
    h3 {
        font-size: 1.4em;
    }
    .btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .service-item, .contact-form {
        padding: 20px;
    }
}