 /* Style the container holding the image and text */
 .container {
     position: relative;
     width: 100%;
     height: 400px;
 }

 /* Style the image */
 .image {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Style the text overlay */
 .overlay {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
     color: white;
     font-size: 4rem;
     font-weight: bold;
     text-shadow: 2px 2px black;
 }

 /* Service Section */
 #trade {
     background-color: #fff;
     padding: 80px 0;
     text-align: center;
 }

 #trade .section-title {
     color: #1a2e4f;
     font-size: 40px;
     font-weight: 700;
     margin-bottom: 50px;
     text-transform: uppercase;
 }

 #trade .section-line {
     background-color: #1a2e4f;
     height: 3px;
     margin: 0 auto 50px auto;
     width: 80px;
 }

 #trade .section-description {
     color: #555;
     font-size: 18px;
     line-height: 1.5;
     margin-bottom: 30px;
 }

 #trade .section-description:last-child {
     margin-bottom: 0;
 }

 footer {
     background-color: #001f3f;
     color: #fff;
     margin: 1px;
 }