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


body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9; 
    color: #333; 
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.navbar {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    font-weight: 600;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #636e72; 
}


.hero {
    text-align: center;
    padding: 60px 20px;
    background: #dfe6e9; 
    color: #2d3436; 
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo-inline {
    max-width: 100px;
    height: auto;
    border-radius: 30%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.cta-button {
    background-color: #2d3436; 
    color: #ffffff;
    padding: 10px 20px;
    border: 2px solid #2d3436;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.cta-button:hover {
    background-color: #636e72; 
    color: #ffffff;
    border-color: #636e72;
}


.section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    border: 1px solid #dfe6e9;
    border-radius: 10px;
    margin: 20px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section.reverse {
    flex-direction: row-reverse;
}

.section .content {
    flex: 1;
}

.section h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #636e72;
}

.section p {
    font-size: 1rem;
    color: #555;
}

.section .image {
    flex: 1;
}

.section .image img {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.contact-section {
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 2px solid #ddd;
    background-color: #f9f9f9;
}

.contact-section h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #2d3436;
}

.contact-section a {
    color: #636e72;
    font-weight: 600;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #333;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #636e72;
}

footer {
    background: #2d3436;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        flex-direction: column;
    }
}


.section:hover {
    background-color: #f4f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-color: #ccc;
}

.section .image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}


.navbar ul li a:hover {
    color: #636e72;
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}


.social-icons a:hover {
    color: #636e72;
    transform: scale(1.1);
    transition: transform 0.3s ease, color 0.3s ease;
}
