/*
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/
#embedded-content {
    max-width: 650px; /* You can adjust this according to parent layout */
    position:relative;
    margin: 0 auto;
    padding: 20px;
	color: #cc3126;
	font-weight: bold;
    background-color: white; /* To distinguish from parent page, if needed */
	font-family: "Gill Sans", sans-serif;
}

.header1 {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.logo {
    height: 100px; /* Adjust according to the height needed */
    margin-right: 20px;
}

.titles {
    text-align: center;
}

.title-one {
    color: #1abc9c;
    margin: 0;
}

.title-two {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.separator {
    border: none;
    border-bottom: 2px solid grey;
    margin: 20px 0;
}

.content-section, .links-section {
    padding: 0 20px;
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.item-logo {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}
/*
.links-section .item {
    margin-bottom: 5px;
}

a {
    text-decoration: none;
    color: blue;
}

a:hover {
    text-decoration: underline;
}
*/

a:link {
  color: #cc3126;
}

a:visited {
  color: purple;
}

a:hover {
  color: green;
}

a:active {
  color: red;
}

a:link, a:visited {
  text-decoration: none;
}