* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-indigo: #4F46E5;
--deep-indigo: #3730A3;
--light-indigo: #818CF8;
--white: #FFFFFF;
--off-white: #F9FAFB;
--light-gray: #E5E7EB;
--medium-gray: #9CA3AF;
--dark-gray: #374151;
--text-dark: #1F2937;
--text-light: #6B7280;
--success: #10B981;
--warning: #F59E0B;
--error: #EF4444;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--white);
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.main-header {
background: var(--white);
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
}
.navbar {
padding: 0;
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
height: 75px;
}
.logo-link {
display: flex;
align-items: center;
text-decoration: none;
gap: 12px;
}
.logo-img {
width: 45px;
height: 45px;
border-radius: 8px;
object-fit: cover;
}
.logo-text {
font-size: 24px;
font-weight: 700;
color: var(--primary-indigo);
letter-spacing: -0.5px;
}
.nav-menu {
display: flex;
list-style: none;
gap: 35px;
align-items: center;
}
.nav-link {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
font-size: 15px;
transition: color 0.3s ease;
position: relative;
padding: 5px 0;
}
.nav-link:hover,
.nav-link.active {
color: var(--primary-indigo);
}
.nav-link.active::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 100%;
height: 3px;
background: var(--primary-indigo);
border-radius: 2px;
}
.mobile-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}
.mobile-toggle span {
width: 25px;
height: 3px;
background: var(--text-dark);
margin: 3px 0;
transition: 0.3s;
border-radius: 2px;
}
.hero-section {
position: relative;
min-height: 650px;
display: flex;
align-items: center;
background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--deep-indigo) 100%);
overflow: hidden;
padding: 80px 20px;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.15);
}
.hero-content {
position: relative;
z-index: 2;
max-width: 700px;
color: var(--white);
padding: 0 20px;
}
.hero-title {
font-size: 52px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 24px;
text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-subtitle {
font-size: 21px;
margin-bottom: 35px;
color: rgba(255,255,255,0.95);
font-weight: 400;
line-height: 1.6;
}
.cta-button {
display: inline-block;
padding: 16px 42px;
background: var(--white);
color: var(--primary-indigo);
text-decoration: none;
border-radius: 10px;
font-weight: 700;
font-size: 17px;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.disclaimer-text {
margin-top: 30px;
font-size: 13px;
opacity: 0.85;
line-height: 1.6;
}
.hero-image {
position: absolute;
right: -50px;
top: 50%;
transform: translateY(-50%);
width: 550px;
height: 550px;
object-fit: cover;
border-radius: 20px;
opacity: 0.2;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.summary-section {
padding: 70px 20px;
background: var(--off-white);
}
.summary-card {
background: var(--white);
border-radius: 16px;
padding: 50px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.summary-card h2 {
font-size: 34px;
color: var(--text-dark);
margin-bottom: 40px;
text-align: center;
font-weight: 700;
}
.summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 35px;
}
.summary-item {
text-align: center;
padding: 25px;
background: var(--off-white);
border-radius: 12px;
transition: transform 0.3s ease;
}
.summary-item:hover {
transform: translateY(-5px);
}
.summary-icon {
color: var(--primary-indigo);
margin-bottom: 15px;
}
.summary-item h3 {
font-size: 22px;
color: var(--text-dark);
margin-bottom: 8px;
font-weight: 600;
}
.summary-item p {
color: var(--text-light);
font-size: 15px;
}
.features-section {
padding: 90px 20px;
background: var(--white);
}
.section-title {
text-align: center;
font-size: 42px;
margin-bottom: 60px;
color: var(--text-dark);
font-weight: 700;
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 5px;
background: var(--primary-indigo);
margin: 20px auto 0;
border-radius: 3px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.feature-card {
padding: 40px 30px;
border-radius: 16px;
transition: all 0.3s ease;
border: 2px solid var(--light-gray);
}
.feature-card.indigo {
background: linear-gradient(135deg, var(--primary-indigo), var(--deep-indigo));
color: var(--white);
border: none;
}
.feature-card.white {
background: var(--white);
color: var(--text-dark);
}
.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(79, 70, 229, 0.2);
}
.feature-icon {
margin-bottom: 20px;
color: inherit;
}
.feature-card.white .feature-icon {
color: var(--primary-indigo);
}
.feature-card h3 {
font-size: 24px;
margin-bottom: 15px;
font-weight: 700;
}
.feature-card p {
line-height: 1.7;
font-size: 16px;
opacity: 0.9;
}
.cta-section {
padding: 90px 20px;
background: linear-gradient(135deg, var(--deep-indigo), var(--primary-indigo));
color: var(--white);
text-align: center;
}
.cta-content h2 {
font-size: 40px;
margin-bottom: 20px;
font-weight: 700;
}
.cta-content p {
font-size: 20px;
margin-bottom: 35px;
opacity: 0.95;
}
.cta-button-large {
display: inline-block;
padding: 18px 50px;
background: var(--white);
color: var(--primary-indigo);
text-decoration: none;
border-radius: 12px;
font-weight: 700;
font-size: 18px;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.cta-button-large:hover {
transform: translateY(-4px);
box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}
.blog-preview {
padding: 90px 20px;
background: var(--off-white);
}
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 35px;
margin-bottom: 50px;
}
.blog-card {
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.blog-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.blog-card img {
width: 100%;
height: 250px;
object-fit: cover;
}
.blog-card-content {
padding: 30px;
}
.blog-card-content h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--text-dark);
font-weight: 700;
}
.blog-card-content p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 20px;
}
.read-more {
color: var(--primary-indigo);
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: color 0.3s ease;
}
.read-more:hover {
color: var(--deep-indigo);
}
.text-center {
text-align: center;
}
.btn-secondary {
display: inline-block;
padding: 14px 35px;
background: var(--primary-indigo);
color: var(--white);
text-decoration: none;
border-radius: 10px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
}
.btn-secondary:hover {
background: var(--deep-indigo);
transform: translateY(-3px);
}
.question-section {
padding: 70px 20px;
background: var(--white);
}
.question-box {
background: linear-gradient(135deg, var(--light-indigo), var(--primary-indigo));
padding: 60px 40px;
border-radius: 16px;
text-align: center;
color: var(--white);
}
.question-box h2 {
font-size: 36px;
margin-bottom: 15px;
font-weight: 700;
}
.question-box p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
}
.btn-question {
display: inline-block;
padding: 16px 40px;
background: var(--white);
color: var(--primary-indigo);
text-decoration: none;
border-radius: 10px;
font-weight: 700;
font-size: 17px;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-question:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.main-footer {
background: var(--text-dark);
color: var(--white);
padding: 60px 20px 30px;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-column h4 {
font-size: 18px;
margin-bottom: 20px;
font-weight: 700;
color: var(--white);
}
.footer-logo {
width: 60px;
height: 60px;
border-radius: 10px;
margin-bottom: 15px;
}
.footer-about {
color: var(--light-gray);
line-height: 1.7;
margin-bottom: 20px;
}
.social-links {
display: flex;
gap: 15px;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: 8px;
color: var(--white);
transition: all 0.3s ease;
}
.social-links a:hover {
background: var(--primary-indigo);
transform: translateY(-3px);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: var(--light-gray);
text-decoration: none;
transition: color 0.3s ease;
font-size: 15px;
}
.footer-links a:hover {
color: var(--white);
}
.footer-contact {
list-style: none;
}
.footer-contact li {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 15px;
color: var(--light-gray);
font-size: 14px;
line-height: 1.6;
}
.footer-contact svg {
flex-shrink: 0;
margin-top: 2px;
}
.registration-number {
margin-top: 15px;
color: var(--medium-gray);
font-size: 13px;
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 30px;
text-align: center;
}
.footer-bottom p {
color: var(--light-gray);
font-size: 14px;
margin-bottom: 10px;
}
.footer-bottom .disclaimer {
font-size: 12px;
opacity: 0.8;
max-width: 900px;
margin: 10px auto 0;
}
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
z-index: 10000;
padding: 25px 20px;
display: none;
}
.cookie-banner.show {
display: block;
animation: slideUp 0.4s ease;
}
@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}
.cookie-text h4 {
font-size: 18px;
margin-bottom: 8px;
color: var(--text-dark);
}
.cookie-text p {
color: var(--text-light);
font-size: 14px;
line-height: 1.6;
}
.cookie-text a {
color: var(--primary-indigo);
text-decoration: underline;
}
.cookie-buttons {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.cookie-buttons button {
padding: 12px 24px;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 14px;
}
.cookie-accept {
background: var(--primary-indigo);
color: var(--white);
}
.cookie-accept:hover {
background: var(--deep-indigo);
}
.cookie-customize {
background: var(--light-gray);
color: var(--text-dark);
}
.cookie-customize:hover {
background: var(--medium-gray);
}
.cookie-decline {
background: transparent;
color: var(--text-light);
border: 1px solid var(--light-gray);
}
.cookie-decline:hover {
background: var(--off-white);
}
.course-hero {
background: linear-gradient(135deg, var(--deep-indigo), var(--primary-indigo));
padding: 100px 20px;
color: var(--white);
text-align: center;
}
.course-hero h1 {
font-size: 48px;
margin-bottom: 20px;
font-weight: 800;
}
.course-hero p {
font-size: 20px;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}
.syllabus-section {
padding: 80px 20px;
background: var(--off-white);
}
.lesson-cards {
display: grid;
gap: 25px;
max-width: 900px;
margin: 0 auto;
}
.lesson-card {
background: var(--white);
border-left: 5px solid var(--primary-indigo);
padding: 30px;
border-radius: 12px;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.lesson-card:hover {
transform: translateX(8px);
box-shadow: 0 6px 20px rgba(79, 70, 229, 0.15);
}
.lesson-card h3 {
font-size: 22px;
color: var(--text-dark);
margin-bottom: 12px;
font-weight: 700;
}
.lesson-card p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 15px;
}
.lesson-card ul {
list-style: none;
padding-left: 0;
}
.lesson-card ul li {
padding-left: 25px;
position: relative;
margin-bottom: 8px;
color: var(--text-light);
}
.lesson-card ul li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--success);
font-weight: bold;
}
.downloads-section {
padding: 70px 20px;
background: var(--white);
}
.downloads-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
max-width: 1000px;
margin: 0 auto;
}
.download-card {
background: var(--off-white);
padding: 30px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid var(--light-gray);
}
.download-card:hover {
border-color: var(--primary-indigo);
transform: translateY(-5px);
}
.download-card svg {
color: var(--primary-indigo);
margin-bottom: 15px;
}
.download-card h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--text-dark);
}
.download-card p {
color: var(--text-light);
margin-bottom: 20px;
}
.download-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
background: var(--primary-indigo);
color: var(--white);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}
.download-btn:hover {
background: var(--deep-indigo);
}
.certificate-section {
padding: 80px 20px;
background: var(--off-white);
text-align: center;
}
.certificate-box {
max-width: 700px;
margin: 0 auto;
background: var(--white);
padding: 50px;
border-radius: 16px;
box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}
.certificate-box svg {
color: var(--warning);
margin-bottom: 25px;
}
.certificate-box h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--text-dark);
}
.certificate-box p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 15px;
}
.blog-header {
background: linear-gradient(135deg, var(--primary-indigo), var(--deep-indigo));
padding: 80px 20px;
color: var(--white);
text-align: center;
}
.blog-header h1 {
font-size: 46px;
margin-bottom: 15px;
font-weight: 800;
}
.blog-header p {
font-size: 19px;
opacity: 0.95;
}
.blog-list-section {
padding: 80px 20px;
background: var(--off-white);
}
.post-header {
background: linear-gradient(135deg, var(--deep-indigo), var(--primary-indigo));
padding: 100px 20px 60px;
color: var(--white);
}
.post-header h1 {
font-size: 44px;
margin-bottom: 20px;
font-weight: 800;
max-width: 900px;
margin-left: auto;
margin-right: auto;
line-height: 1.3;
}
.post-meta {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
font-size: 15px;
opacity: 0.9;
}
.post-meta span {
display: flex;
align-items: center;
gap: 8px;
}
.post-content-section {
padding: 60px 20px;
background: var(--white);
}
.post-content {
max-width: 800px;
margin: 0 auto;
}
.post-image {
width: 100%;
max-height: 500px;
object-fit: cover;
border-radius: 16px;
margin-bottom: 40px;
}
.post-content h2 {
font-size: 32px;
margin: 40px 0 20px;
color: var(--text-dark);
font-weight: 700;
}
.post-content h3 {
font-size: 26px;
margin: 30px 0 15px;
color: var(--text-dark);
font-weight: 700;
}
.post-content p {
font-size: 17px;
line-height: 1.8;
color: var(--text-dark);
margin-bottom: 20px;
}
.post-content ul,
.post-content ol {
margin: 20px 0;
padding-left: 30px;
}
.post-content li {
margin-bottom: 12px;
line-height: 1.8;
color: var(--text-dark);
}
.post-content strong {
color: var(--text-dark);
font-weight: 700;
}
.about-hero {
background: linear-gradient(135deg, var(--primary-indigo), var(--deep-indigo));
padding: 90px 20px;
color: var(--white);
text-align: center;
}
.about-hero h1 {
font-size: 48px;
margin-bottom: 20px;
font-weight: 800;
}
.about-hero p {
font-size: 20px;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}
.about-story {
padding: 80px 20px;
background: var(--white);
}
.about-story-content {
max-width: 900px;
margin: 0 auto;
}
.about-story h2 {
font-size: 38px;
margin-bottom: 25px;
color: var(--text-dark);
font-weight: 700;
}
.about-story p {
font-size: 17px;
line-height: 1.8;
color: var(--text-light);
margin-bottom: 20px;
}
.team-section {
padding: 80px 20px;
background: var(--off-white);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
}
.team-member {
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
text-align: center;
}
.team-member:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.team-member img {
width: 100%;
height: 400px;
object-fit: cover;
}
.team-member-info {
padding: 25px;
}
.team-member h3 {
font-size: 22px;
margin-bottom: 8px;
color: var(--text-dark);
font-weight: 700;
}
.team-member .role {
color: var(--primary-indigo);
font-weight: 600;
margin-bottom: 12px;
font-size: 15px;
}
.team-member p {
color: var(--text-light);
line-height: 1.7;
font-size: 15px;
}
.contact-hero {
background: linear-gradient(135deg, var(--deep-indigo), var(--primary-indigo));
padding: 80px 20px;
color: var(--white);
text-align: center;
}
.contact-hero h1 {
font-size: 46px;
margin-bottom: 15px;
font-weight: 800;
}
.contact-hero p {
font-size: 19px;
opacity: 0.95;
}
.contact-content {
padding: 80px 20px;
background: var(--off-white);
}
.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
max-width: 1100px;
margin: 0 auto;
}
.contact-info {
background: var(--white);
padding: 40px;
border-radius: 16px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-info h2 {
font-size: 30px;
margin-bottom: 25px;
color: var(--text-dark);
font-weight: 700;
}
.contact-item {
display: flex;
align-items: start;
gap: 15px;
margin-bottom: 25px;
}
.contact-item svg {
color: var(--primary-indigo);
flex-shrink: 0;
margin-top: 3px;
}
.contact-item-content h3 {
font-size: 16px;
color: var(--text-dark);
margin-bottom: 5px;
font-weight: 700;
}
.contact-item-content p {
color: var(--text-light);
line-height: 1.6;
}
.contact-form-container {
background: var(--white);
padding: 40px;
border-radius: 16px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-form-container h2 {
font-size: 30px;
margin-bottom: 25px;
color: var(--text-dark);
font-weight: 700;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
color: var(--text-dark);
font-weight: 600;
font-size: 15px;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 14px;
border: 2px solid var(--light-gray);
border-radius: 8px;
font-size: 15px;
font-family: inherit;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-indigo);
}
.form-group textarea {
resize: vertical;
min-height: 150px;
}
.submit-btn {
width: 100%;
padding: 16px;
background: var(--primary-indigo);
color: var(--white);
border: none;
border-radius: 8px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
}
.submit-btn:hover {
background: var(--deep-indigo);
transform: translateY(-2px);
}
.success-popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: var(--white);
padding: 40px;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
z-index: 10001;
text-align: center;
max-width: 400px;
width: 90%;
}
.success-popup.show {
display: block;
animation: popIn 0.4s ease;
}
@keyframes popIn {
from {
opacity: 0;
transform: translate(-50%, -50%) scale(0.8);
}
to {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
}
.success-popup svg {
color: var(--success);
margin-bottom: 20px;
}
.success-popup h3 {
font-size: 26px;
margin-bottom: 12px;
color: var(--text-dark);
}
.success-popup p {
color: var(--text-light);
margin-bottom: 25px;
}
.close-popup-btn {
padding: 12px 30px;
background: var(--primary-indigo);
color: var(--white);
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease;
}
.close-popup-btn:hover {
background: var(--deep-indigo);
}
.popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
z-index: 10000;
}
.popup-overlay.show {
display: block;
}
@media (max-width: 968px) {
.nav-menu {
position: fixed;
left: -100%;
top: 75px;
flex-direction: column;
background-color: var(--white);
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: 0 10px 27px rgba(0,0,0,0.05);
padding: 30px 0;
align-items: center;
gap: 20px;
}
.nav-menu.active {
left: 0;
}
.mobile-toggle {
display: flex;
}
.hero-title {
font-size: 38px;
}
.hero-subtitle {
font-size: 18px;
}
.hero-image {
opacity: 0.1;
width: 400px;
height: 400px;
}
.features-grid {
grid-template-columns: 1fr;
}
.contact-wrapper {
grid-template-columns: 1fr;
}
.summary-grid {
grid-template-columns: 1fr;
}
.blog-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
.section-title {
font-size: 34px;
}
.team-grid {
grid-template-columns: 1fr;
}
.cookie-content {
flex-direction: column;
align-items: flex-start;
}
}
@media (max-width: 640px) {
.hero-title {
font-size: 32px;
}
.hero-subtitle {
font-size: 16px;
}
.section-title {
font-size: 28px;
}
.summary-card {
padding: 30px 20px;
}
.summary-card h2 {
font-size: 26px;
}
.post-header h1 {
font-size: 32px;
}
.about-hero h1,
.course-hero h1,
.blog-header h1,
.contact-hero h1 {
font-size: 34px;
}
}
