body {
    margin: 0;
    padding: 0;
}
.gallery {
    display: flex;
    flex-direction: column;
}
.gallery img {
    width: 100%;
    height: auto;
    display: block;
}
.form-section {
    background-color: #0e747e;
    padding: 30px 20px;
}
.form-title {
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
}
.form-group .required {
    color: red;
}
.form-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}
.form-group input:focus {
    border-color: #005a8a;
}
.submit-btn {
    width: 100%;
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}
.submit-btn:hover {
    background-color: #1d4ed8;
}
.float-btn-container {
    position: fixed;
    bottom: 120px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 9999;
}
.float-btn-svg {
    display: block;
}
.float-btn-icon {
    background-color: #22c55e;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.float-btn-icon:hover {
    transform: scale(1.1);
}
.footer-info {
    background-color: white;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}
.footer-info .company-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}
.footer-info .phone {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}
.news-section {
    background-color: #0e747e;
    padding: 30px 20px;
}
.news-title {
    color: white;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-item {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}
.news-item-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}
.news-item-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}
.news-item-more {
    color: white;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
}