body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
}

.logo-image {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

.page-title {
    text-align: center;
    font-size: 2rem;
    margin: 20px 0;
}

.content-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s;
}

.content-container:hover {
    transform: translateY(-5px);
}

.highlight {
    font-weight: bold;
    color: #0056b3;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffcc00;
}

footer {
    background: #0056b3;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffcc00;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #0056b3;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    margin: 20px auto;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

.cta-section {
    text-align: center;
    margin: 40px 0;
}

/* Animation Styles */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.header-logo {
    margin-bottom: 10px;
}

.logo-image {
    width: 150px;
    height: auto;
}

.navigation {
    text-align: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav-link {
    padding: 10px 20px;
    display: block;
    font-size: 16px;
    color: #fff;
    transition: background 0.3s;
}

.nav-link:hover {
    background: #555;
}

.mobile-nav select {
    display: none;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    max-width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
}

.slide-image {
    width: 100%;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
}

.slide-indicators {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.indicator {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.indicator.active, .indicator:hover {
    background-color: #333;
}

/* About Section Styles */
.about {
    padding: 20px;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.service-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-column {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
}

.service-title {
    font-size: 20px;
    margin-top: 10px;
}

.service-description {
    font-size: 16px;
    margin-top: 5px;
    color: #666;
}

/* What We Do Section Styles */
.what-we-do {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f9f9f9;
}

.content-column {
    width: 50%;
    padding: 10px;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #555;
}

/* Video Section Styles */
.videos {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.video-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.video-description {
    width: 50%;
    padding: 10px;
    text-align: left;
}

.video-text {
    font-size: 18px;
    line-height: 1.8;
}

.video-frame {
    width: 50%;
    padding: 10px;
}

/* News Section Styles */
.news {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
}

.news-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.news-item {
    width: 30%;
    padding: 10px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-logo {
    width: 100px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    margin: 10px 0;
}

.news-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* Gallery Section Styles */
.gallery {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-item {
    width: 30%;
    padding: 10px;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    width: 30%;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-link {
    color: #fff;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ddd;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-link {
    margin: 0 10px;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ddd;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-nav select {
        display: block;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        background: #333;
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .service-column,
    .content-column,
    .video-description,
    .video-frame,
    .news-item,
    .gallery-item,
    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .what-we-do {
        flex-direction: column;
    }

    .video-columns {
        flex-direction: column;
    }
}



/* Contact Section Styles */
.row31 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
}


/* Contact Section Styles */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    background: #fff;
}

.contact-info {
    width: 48%;
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid #ddd;
}

.contact-form {
    width: 48%;
    padding: 20px;
    box-sizing: border-box;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form .btn-submit {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.contact-form .btn-submit:hover {
    background-color: #555;
}


/* About Section Styles */
.about {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.service-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-column {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
}

.service-title {
    font-size: 20px;
    margin-top: 10px;
}

.service-description {
    font-size: 16px;
    margin-top: 5px;
    color: #666;
}

.what-we-do {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f9f9f9;
}

.content-column {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* Storage Section Styles */
.storage-intro {
    padding: 20px;
    background: #fff;
    text-align: center;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.intro-text {
    width: 60%;
    padding: 10px;
}

.intro-links {
    width: 30%;
    text-align: left;
}

.link-item {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #007BFF;
    text-decoration: none;
}

.link-item:hover {
    text-decoration: underline;
}

/* Achievements Section Styles */
.achievements {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
}

.achievements-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat {
    width: 20%;
    padding: 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
}

.stat-label {
    font-size: 14px;
}

/* Storage Gallery Section Styles */
.storage-gallery {
    padding: 20px;
    background: #fff;
    text-align: center;
}

.gallery-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.gallery-item {
    width: 30%;
    padding: 10px;
}

.gallery-image {
    width: 100%;
    height: auto;
}

.gallery-item h3 {
    font-size: 18px;
    margin-top: 10px;
}

.gallery-item p {
    font-size: 14px;
}


/* Storage Sizes Section Styles */
.storage-sizes {
    padding: 20px;
    background: #f8f9fa;
}

.storage-size-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.size-option {
    width: 30%;
    padding: 10px;
}


/* Packing Section Styles */
.hero-title {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    color: #333;
}

.packing-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
}

.packing-info-image {
    flex: 1;
    max-width: 50%;
}

.info-image {
    width: 100%;
    height: auto;
}

.packing-info-text {
    flex: 1;
    max-width: 45%;
    padding: 10px;
}

.info-heading {
    font-size: 20px;
    margin-bottom: 10px;
}

.btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}

.additional-help {
    text-align: center;
    font-size: 18px;
    margin: 20px 0;
}

/* Benefits Section */
.packing-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
}

.benefit-column {
    flex: 1;
    max-width: 30%;
    padding: 10px;
    box-sizing: border-box;
}

.benefit-title {
    font-weight: bold;
}

.benefit-description {
    margin: 10px 0;
}

/* Team Section */
.team-title {
    text-align: center;
    font-size: 20px;
    margin: 20px 0;
}

.team-profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
}

.team-profile {
    text-align: center;
    flex: 1;
    max-width: 22%;
    margin: 10px;
}

.team-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.team-name {
    font-weight: bold;
    margin-top: 10px;
}

.team-role {
    color: #777;
}