body {
    background-image: url('teaching.jpeg'); 
    background-size: cover !important; 
    background-repeat: no-repeat !important; 
    background-attachment: fixed !important; 
    background-position: center center !important; 
    
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: white; 
    margin: 0;
}

.translator-widget {
    text-align: right;
    padding: 10px 20px 0;
}

.hero {
    background: rgba(0, 0, 0, 0.5); 
    height: 400px;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    color: white; 
    text-shadow: 2px 2px 5px rgb(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    border-bottom: none;
}
.hero-tagline {
    font-size: 1.4em;
    font-weight: 300;
    box-shadow: 0px,0px, 10px rgba(0, 0, 0, 0.5);
    color:#ffcc00;
}

h2 {
    background-color: rgba(0, 0, 0, 0.4); 
    color: white; 
    padding: 15px 50px; 
    margin: 30px 0 0 0; 
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    width: 100%; 
    box-sizing: border-box; 
    border-bottom: none; 
    text-shadow: none; 
    box-shadow: none;
    max-width: none;
}


h3, h4 {
    color: white; 
    text-shadow: 1px 1px 3px #000; 
}
h4 {
    font-size: 1.2em;
    margin-top: 15px;
    border-bottom: 1px dashed white;
    padding-bottom: 5px;
}
h3 {
    font-size: 1.5em;
    margin-top: 0;
}

main  {
    padding: 20px;
    max-width: 900px; 
    margin: 0 auto;
    display: block; 
}

.service-accordion {
    background-color: rgba(51, 51, 51, 0.6); 
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    border: 1px solid #999;
}
.service-accordion:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.accordion-summary {
    display: block;
    cursor: pointer;
    padding: 20px;
    background-color: rgba(51, 51, 51, 0.8); 
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    list-style: none;
}
.accordion-summary::-webkit-details-marker {
    display: none;
}
.accordion-summary::before {
    content: '+';
    font-size: 1.5em;
    margin-right: 10px;
    color: #007bff;
    line-height: 1;
}
.service-accordion[open] .accordion-summary::before {
    content: '–';
}

.accordion-summary h3 {
    color: #007bff; 
    display: inline-block;
    border-bottom: none;
}

.accordion-content {
    padding: 20px;
    border-top: 1px solid #666;
    color: white; 
}

.packages-section {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    display: flex; 
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px; 
}

.packages-header-box {
    width: 100%; 
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 15px 20px;
    margin-bottom: 30px; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.packages-header-box h2 {
    margin: 0; 
    border-bottom: none; 
    padding-bottom: 0;
    color: #ffcc00; 
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}


.package-card {
    background-color: rgba(41, 41, 41, 0.7); 
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    flex: 0 0 calc(33% - 40px); 
    min-width: 280px; 
    margin-bottom: 20px; 
    transition: transform 0.3s;
}
@media (max-width: 900px) { 
    .package-card {
        flex: 0 0 calc(50% - 30px);
    }
}
@media (max-width: 600px) { 
    .package-card {
        flex: 0 0 calc(100% - 20px);
    }
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.package-card h3 {
    color: #ffcc00; 
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-shadow: none;
}

.package-card ul {
    list-style: none;
    padding-left: 0;
    color: rgb(0, 0,0, 0.8);
}
.package-card ul li {
    margin-bottom: 8px;
}

.why-choose-us {
    max-width: 900px; 
    margin: 40px auto; 
    padding: 30px;
    background-color: rgba(51, 51, 51, 0.6); 
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.why-choose-us h2 {
    color: white; 
    text-shadow: 1px 1px 3px #000;
    border-bottom: 2px solid white;
    margin-top: 0;
}

.cta-button {
    display: block;
    width: 280px; 
    margin: 40px auto 0 auto;
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #0056b3;
}

.registration-form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(51, 51, 51, 0.8); 
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: white;
}

.registration-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffcc00;
}

.registration-form input[type="text"],
.registration-form input[type="number"],
.registration-form input[type="email"],
.registration-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    box-sizing: border-box;
    font-size: 1em;
}

.registration-form select {
    appearance: none; 
}

.submit-button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-button:hover {
    background-color: #0056b3;
}

.thankyou-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7); 
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    color: white;
}

.thankyou-container h2 {
    color: #ffcc00; 
    border-bottom: 2px solid #ffcc00;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.thankyou-container .message {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.thankyou-container .follow-up {
    font-size: 1.1em;
    color: #007bff; 
    margin-bottom: 30px;
}

.back-home-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.back-home-button:hover {
    background-color: #0056b3;
}

ul {
    list-style:disc inside;
    padding-left: 0;
    color: white; 
}
li {
    margin-bottom: 8px;
}

footer {
    background-color: rgba(0, 0, 0, 0.8); 
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer a { 
    color: #ffcc00;
    text-decoration: none;
}
.grey-box-title {
  background-color:rgba(0, 0, 0, 0.4); 
  color: white;              
  padding: 10px 20px;
  margin: 10px auto;
  border-radius: 5px;
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  max-width: 80%;
  text-shadow: none !important; 
}
@media (max-width: 768px) {
    .registration-form-container {
        padding: 15px;
        margin: 10px;
    }
    .registration-form label,
    .registration-form input[type="text"],
    .registration-form input[type="number"],
    .registration-form input[type="email"],
    .registration-form select {
        width: 100%; 
        box-sizing: border-box; 
        margin-bottom: 10px;
        display: block; 
    }
}

    h2.grey-box-title {
        font-size: 1.5em;
    }

    .submit-button {
        width: 100%;
        padding: 12px;
    }

@media (max-width: 768px) {

    h1 {
        font-size: 3em !important; 
        line-height: 1.1;
    }
    
 
    h2 {
        font-size: 1.8em !important; 
    }

    section {
        padding: 30px 15px; 
    }
    
    img {
        max-width: 100%;
        height: auto;
    }}
   .Registration-button-center {
    display: block !important;
    width: 50%;
    margin: 20px auto;
    text-decoration: none !important;}