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

body {
    font-family: 'Arial', sans-serif;
    background-color: #e0e0e9; /* Warm beige background */
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Styles */
header {
    background-color: #000d3a; /* Warm orange */
    padding: 2rem;
    text-align: center;
    color: #fff;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 2rem 0;
    border-bottom: 1px solid #ccc;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: Justify;
}

section p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: Justify;
}

.podcast-links, .syndication-list, .platform-list ul {
    list-style: none;
    text-align: Justify;
}

.podcast-list li, .syndication-list li, .platform-list li {
    margin: 0.5rem 0;
}

.podcast-list li a, .syndication-list li, .platform-list li {
    color: #c97345;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.podcast-list li a:hover {
    color: #ff8c57; /* Slightly lighter shade on hover */
}

/* Button Styles */
button {
    display: block;
    margin: 1.5rem auto;
    padding: 0.75rem 1.5rem;
    background-color: #c97345;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.btn:hover {
    background-color: #ff8c57;
}

/* Audio Player Styles */
.audio-player {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

audio {
    width: 100%;
    max-width: 600px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;


}
.row3{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;


}
.row1{
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
 
}
.row23{
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
 
}
.row-2-1{
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
 
}

img{
    width:100%;
}
@media (min-width: 301px) and (max-width: 600px){
  .row, .row1, .row-2-1, .row23 {
    grid-template-columns: 1fr;
  }
  .image-before-after1{
    width: 47%;
   margin-right: 5px;
  }
  .image-before-after1 {
  max-height: 140px;
  }
}
@media only screen and (max-width: 300px){
  .row, .row1, .row-2-1 {
    grid-template-columns: 1fr;
  }
  .image-before-after1{
    width: 45%;
   margin-right: 7px;
  }
}

.btn {

  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 5px;
  background-color: #000d3a;
  color: #fff;
  font-family: inherit;

  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
  font-size: 15px;
}

.btn1 {

  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 5px;
  color: #fff;
  font-family: inherit;
  white-space: normal;
  font-size: 15px;
}


.form_body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.form_body h2 {
    text-align: center;
    color: #444;
    margin-bottom: 20px;
}

form {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.form_body h3 {
    color: #555;
    font-size: 1.2em;
    margin-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

label {
    font-weight: bold;
    margin-top: 15px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"],
textarea,
button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

button {
    background-color: #5c67f2;
    color: #fff;
    border: none;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    padding: 12px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4a56c8;
}

@media (max-width: 600px) {
    form {
        padding: 15px;
    }

    label, input, textarea, button {
        font-size: 0.9em;
    }
}
