/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #e91e63;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
}

.cta-button {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.cta-button.large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    padding: 80px 0;
}

.hero-content {
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 2rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.about-item h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Techniques Section */
.techniques {
    padding: 80px 0;
    background: #f8f9fa;
}

.techniques h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.techniques-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.technique-text h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.technique-text p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.technique-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Success Stories */
.success {
    padding: 80px 0;
    background: #fff;
}

.success h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.success-story {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.success-story img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.success-story h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

/* Course Details */
.course-detail {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.course-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.course-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.course-content.reverse .course-info {
    order: 2;
}

.course-content.reverse .course-image {
    order: 1;
}

.course-info h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.course-meta span {
    background: #e91e63;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.course-info h3 {
    color: #e91e63;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.course-info ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.course-info li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.course-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Instructor Details */
.instructor-detail {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.instructor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.instructor-content.reverse {
    grid-template-columns: 1fr 300px;
}

.instructor-content.reverse .instructor-info {
    order: 1;
}

.instructor-content.reverse .instructor-image {
    order: 2;
}

.instructor-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.instructor-info h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instructor-info h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.instructor-credentials {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.credential {
    background: #f8f9fa;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #e91e63;
}

.instructor-info h4 {
    color: #e91e63;
    margin: 1.5rem 0 0.5rem 0;
}

.instructor-info ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Gallery Styles */
.gallery-nav {
    background: #f8f9fa;
    padding: 2rem 0;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-button {
    background: #fff;
    border: 2px solid #e91e63;
    color: #e91e63;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: #e91e63;
    color: white;
}

.gallery-section {
    padding: 60px 0;
    display: none;
}

.gallery-section.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
}

/* Contact Styles */
.contact-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item a {
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    color: #e91e63;
}

/* Form Styles */
.registration-form {
    padding: 80px 0;
    background: #fff;
}

.registration-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.registration-form > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

/* Statistics */
.success-stats {
    padding: 60px 0;
    background: #e91e63;
    color: white;
}

.success-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e91e63;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: #e91e63;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-policy {
    color: #ccc;
    text-decoration: underline;
}

/* CTA Sections */
.registration-cta,
.join-team-cta,
.join-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    text-align: center;
}

.registration-cta h2,
.join-team-cta h2,
.join-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.registration-cta p,
.join-team-cta p,
.join-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.registration-cta .cta-button,
.join-team-cta .cta-button,
.join-cta .cta-button {
    background: white;
    color: #e91e63;
}

.registration-cta .cta-button:hover,
.join-team-cta .cta-button:hover,
.join-cta .cta-button:hover {
    background: #f8f9fa;
}

/* Schedule Section */
.schedule-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.schedule-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.schedule-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-item h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.schedule-dates p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Career Section */
.career-section {
    padding: 60px 0;
    background: white;
}

.career-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.career-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.career-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.position-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.position-item h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.position-item ul {
    margin-left: 1.5rem;
}

.position-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Partnership Section */
.partnership-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.partnership-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.partnership-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.partnership-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partnership-item h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Policy Pages Styles */
.policy-content {
    padding: 60px 0;
    background: #fff;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-text h2 {
    color: #e91e63;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.5rem;
}

.policy-text h3 {
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.3rem;
}

.policy-text ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
}

.policy-text strong {
    color: #e91e63;
}

.policy-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
    border-left: 4px solid #e91e63;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #e91e63;
    color: white;
    font-weight: bold;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

/* Cookie Controls */
.cookie-controls {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid #e91e63;
}

.cookie-controls h3 {
    color: #e91e63;
    margin-bottom: 1rem;
}

/* Teaching Philosophy */
.teaching-philosophy {
    padding: 60px 0;
    background: #f8f9fa;
}

.teaching-philosophy h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
}

.philosophy-item h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Before After Gallery */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.before-after-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.before-image,
.after-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(233, 30, 99, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.before-after-info h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
}

/* Certificates Section */
.certificates-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.certificates-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.certificates-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certificate-info,
.gallery-description {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certificate-info h3,
.gallery-description h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.certificate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature h4 {
    color: #e91e63;
    margin-bottom: 0.5rem;
}

/* Complaints and Refund Sections */
.complaints-section,
.refund-section {
    padding: 60px 0;
}

.complaints-section {
    background: #f8f9fa;
}

.refund-section {
    background: white;
}

.complaints-section h2,
.refund-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.complaints-section > p,
.refund-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.complaints-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.complaint-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.complaint-item h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.refund-conditions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.refund-conditions ul {
    margin-left: 1.5rem;
}

.refund-conditions li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .techniques-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-content,
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-content.reverse,
    .instructor-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .course-content.reverse .course-info,
    .instructor-content.reverse .instructor-info {
        order: 1;
    }
    
    .course-content.reverse .course-image,
    .instructor-content.reverse .instructor-image {
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about h2,
    .techniques h2,
    .success h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
}
