/* Reset and Base Styles */

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #333;
  padding: 0 1em 1em 1em;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
  border-bottom: 2px solid #eee;
  flex-wrap: wrap;
}

.logo {
  width: 150px;
  height: auto;
}

.site-header h1 {
  text-align: center;
  font-size: 1.8em;
  margin: 0 auto;
}

.site-header h1 span {
  font-weight: normal;
  font-size: 1em;
}


a {text-decoration: none;}


/*Code for Hamburger Dropdown List*/

.menu {
  position: relative;
  display: inline-block;
  }

/* Hamburger icon styling*/

 .hamburger {
    font-size: 30px;
    cursor: pointer;
    padding: 15px;
    user-select: none;
    }


/* Hide the checkbox*/

    #menu-toggle{
       position: absolute;
       opacity: 0;
       pointer-events: none;
       width: 0;
       height:0;
    }


/*Dropdown links*/

  .menu-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: white;
    min-width: 150px;
    z-index: 1;
    }


   .menu-links a {
      color: #6B89C2;
      padding: 12px 16px;
      display: block;
      text-decoration: none;
     }

   .menu-links a:hover {
      background-color: #D3D3D3;
   }

/* Show menu when checkbox is checked*/

   #menu-toggle:checked + .hamburger + .menu-links{
     display:block;
     }












/* About Section */
.about-section {
  background-color: #fff2e6;
  padding: 2em;
  margin: 2em 0;
  border-radius: 10px;
}

.property-division img {
  float: left;
  max-width: 200px;
  margin: 1em 2em 1em 0;
  border-radius: 6px;
}

.property-division ul {
  margin-left: 1.2em;
}

/* Creative Section */
.creative-division {
  padding: 2em 1em 0 2em;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.services div {
  flex: 1;
}

h2, h3 {
  margin-bottom: 0.5em;
}
____________________
.parent span{
display: inline-block;
white-space: no wrap;
width:auto;}

.line {
display: flex;
justify-content: space-between;
width: 100%;}

.left, .right {
padding:5px;}

.line {
flex-wrap:wrap}



.header-content{
  display: flex;
  justify-content: space-between;
  align-items: center;}









/* Footer */
footer {
  text-align: center;
  padding: 2em 0;
  font-size: 0.9em;
  font-style: italic;
  background-color: #f2f2f2;
  margin-top: 2em;
}

/* Responsive */
@media (min-width: 768px) {
  .services {
    flex-direction: row;
    justify-content: space-between;
  }

  .site-header h1 {
    font-size: 2.2em;
  }

  .logo {
    width: 150px; display:block; float-left; margin-left:1em;">
  }
}
.no-break {white-space: nowrap;}









