body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Navigation */
.navbar-custom {
    background-color: #343a40;
    padding: 1rem;
    text-align: center;
}
.navbar-custom a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}
.navbar-custom a:hover {
    color: #adb5bd;
}

/* Header */
.header {
    background: url('/Imagini/photo_1_2024-07-26_16-44-04.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}
.header h1 {
    font-size: 3em;
    margin: 0;
}
.header p {
    font-size: 1.5em;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* Main Content */
.content {
    padding: 20px;
}

.card {
    margin-bottom: 20px;
}

/* About Us Section */
.about-us {
    background-color: #ffffff;
    padding: 50px 0;
}
.about-us h2 {
    text-align: center;
    margin-bottom: 40px;
}
.about-us p {
    text-align: justify;
    margin: 0 auto;
    max-width: 800px;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
    padding: 50px 0;
}
.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}
.contact .row {
    display: flex;
    justify-content: center;
}
.contact .col-md-6 {
    padding: 20px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact form .form-group {
    margin-bottom: 20px;
}
.contact form .form-control {
    border-radius: 0;
}
.contact form button {
    border-radius: 0;
}

/* New Contact Section */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background-color: #ffffff;
}
.contact-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.contact-details {
    margin-left: 50px;
    max-width: 500px;
}
.contact-details h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.contact-details p {
    margin-bottom: 20px;
    font-size: 1.1em;
}
.contact-details .address,
.contact-details .contact-info {
    margin-bottom: 20px;
}
.contact-details .contact-info p {
    margin: 0;
}
.contact-details .social-icons {
    display: flex;
    gap: 10px;
}
.contact-details .social-icons a {
    color: #000;
    font-size: 1.5em;
}
.contact-details .social-links {
    margin-top: 20px;
}
.contact-details .social-links a {
    color: #000;
    font-size: 1.2em;
    margin-right: 15px;
}
